我的UICollectionView
在 iOS 10 中除之外的所有版本中均可正常使用。我正在使用UIImageView
来显示图片。
我将图片保存在应用程序的ContentFolder
中。
我使用NSData *imageData = [NSData dataWithContentsOfFile:filename];
获取图片数据,UIImage *image = [UIImage imageWithData:imageData];
创建我想要展示的图片。
有谁知道问题是什么?
答案 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