UICollectionView不在iOS 10中显示图像

时间:2016-09-16 13:10:55

标签: ios objective-c uiimageview uicollectionview ios10

我的UICollectionView iOS 10 中除之外的所有版本中均可正常使用。我正在使用UIImageView来显示图片。

我将图片保存在应用程序的ContentFolder中。

我使用NSData *imageData = [NSData dataWithContentsOfFile:filename];获取图片数据,UIImage *image = [UIImage imageWithData:imageData];创建我想要展示的图片。

有谁知道问题是什么?

2 个答案:

答案 0 :(得分:6)

将集合视图的isPrefetchingEnabled属性设置为false(默认情况下,在iOS 10中为true)。

答案 1 :(得分:3)

clipsToBounds和cornerRadius可能会产生效果。这解决了我的问题。 iOS 10 GM with xcode 8 GM causes views to disappear due to roundedCorners & clipsToBounds