我有一堆图片,我使用的细胞的图像视图,他们都不大于50x50。例如40x50,50x32,20x37... ..。
当我加载表格视图时,文本没有排列起来,因为图像的宽度不同。此外,我希望小图像出现在中心,而不是在左边。
下面是我在“ cellForRowAtIndexPath”方法中尝试的代码
cell.imageView.autoresizingMask = ( UIViewAutoresizingNone );
cell.imageView.autoresizesSubviews = NO;
cell.imageView.contentMode = UIViewContentModeCenter;
cell.imageView.bounds = CGRectMake(0, 0, 50, 50);
cell.imageView.frame = CGRectMake(0, 0, 50, 50);
cell.imageView.image = [UIImage imageWithData: imageData];
如你所见,我尝试了一些方法,但没有一个奏效。