我的视图控制器中有一个表视图。我有一个名为 chkin.png (258x258)
的图像和另一个名为 chkin@2x.png(516x516) 的视网膜图像
在情节提要中,我定义了像 And in cellForRowAtIndex 方法一样的单元格
[cell.imageView setClipsToBounds:YES];
cell.imageView.contentMode = UIViewContentModeScaleAspectFit;
[cell.imageView setImage:image];
在普通 iPhone 中没有问题,但在视网膜显示中,图像略微超出图像视图
请给我最好的方法来做到这一点