标签:
CGSize itemSize = CGSizeMake(40, 40); UIGraphicsBeginImageContextWithOptions(itemSize, NO,0.0); CGRect imageRect = CGRectMake(0.0, 0.0, itemSize.width, itemSize.height); [icon drawInRect:imageRect]; cell.imageView.image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
这里将imageView的大小设为40*40的。
改变系统自带UITableViewCell的imageView的大小
标签:
原文地址:http://www.cnblogs.com/shilang2015/p/5578178.html