修改系统UITableViewCell的ImageView大小
Posted xuzb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改系统UITableViewCell的ImageView大小相关的知识,希望对你有一定的参考价值。
代码如下:
CGSize itemSize = CGSizeMake(63, 63); UIGraphicsBeginImageContext(itemSize); CGRect imageRect = CGRectMake(0.0, 0.0, itemSize.width, itemSize.height); [self.imageView.image drawInRect:imageRect]; self.imageView.image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
以上是关于修改系统UITableViewCell的ImageView大小的主要内容,如果未能解决你的问题,请参考以下文章
当 UITableViewCell 使用 Swift 展开时如何更改 UIButton Image?
我正在使用默认的 UITableViewCell 。我想在本地服务器的单元格上设置图像...cell.imageView.image
如果宽度和高度不同,如何在 UITableView 中将 UITableViewCell Image 更改为 Circle