我想为 UITableviewcell 设置图像,但 imageview 内容模式是UIViewContentModeScaleAspectFit并且设置全宽取决于UIIMageView的宽度高度发生变化,如何做到这一点。
问问题
426 次
1 回答
0
UIIMageView
将您的内容模式更改为UIViewContentModeScaleToFill
或UIViewContentModeScaleAspectFill
已编辑
使用以下UITableView's
方法
在(heightsArray)中添加您UIImageView
的高度NSMutableArray
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return [heightsArray objectAtIndex:indexpath.row];
}
于 2013-07-17T09:29:45.130 回答