我想知道如何将imageview动态设置为tableview单元的中心。

这是我当前的代码。

UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(100,100, 20, 20)];


imgView.image = [UIImage imageNamed:@"friendsCelluserpic.png"];


cell.imageView.image = imgView.image;

最佳答案

您可以像这样[cell.contentView addSubview:imgView];

关于iphone - 如何在tableview单元格上动态设置一个imageview居中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18481487/

10-11 14:54