UICollectionView适用于iOS7但不适用于iOS6

前端之家收集整理的这篇文章主要介绍了UICollectionView适用于iOS7但不适用于iOS6前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的UICollectionView单元格没有显示在iOS6上,因为我的委托方法cellForItemAtIndexPath没有被调用.我怀疑是因为这个警告:
the behavior of the UICollectionViewFlowLayout is not defined because:
 the item height must be less that the height of the `UICollectionView`
 minus the section inset's top and bottom values.

我没有在iOS7上收到警告,所有单元格也在那里正确显示.

我已将我的collectionView框架设置为.xib中的高度270,并且没有定义任何插图.
我在.xib中将单元格高度设置为270.
我可以在运行时打印出我的collectionView框架,它是271.

此外,我的collectionview实际上是在自定义tableview单元格内.

有任何想法吗?
谢谢!

解决方法

尝试设置self.automaticallyAdjustsScrollViewInsets = NO

这是在ios7中引入的,因此如果您支持ios6及更低版本,则可能需要使用ios版本检查进行包装.

原文链接:https://www.f2er.com/iOS/334961.html

猜你在找的iOS相关文章