自定义UICollectionViewFlowLayout报的警告

Logging only once for UICollectionViewFlowLayout cache mismatched frame**

UICollectionViewFlowLayout has cached frame mismatch for index path <NSIndexPath: 0xc000000000200016> {length = 2, path = 0 - 1} - cached value: {{271.25, 41.25}, {117.5, 117.5}}; expected value: {{250, 20}, {160, 160}}**

CollectionView[50664:5115717] This is likely occurring because the flow layout subclass PhotoFlowLayout is modifying attributes returned by UICollectionViewFlowLayout without copying them**

OC解决办法:

NSArray *attrs   =  [super layoutAttributesForElementsInRect:self.collectionView.bounds];

swift解决办法:

  let attributes = super.layoutAttributesForElementsInRect(self.collectionView!.bounds)
  var attributesCopy = [UICollectionViewLayoutAttributes]()
  for itemAttributes in attributes! {
        let itemAttributesCopy = itemAttributes.copy() as! UICollectionViewLayoutAttributes
        // manipulate itemAttributesCopy
        attributesCopy.append(itemAttributesCopy)
   }
查找的文章:

http://stackoverflow.com/questions/32720358/xcode-7-copy-layoutattributes
http://blog.csdn.net/mengxiangyue/article/details/50753839

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 在此特此声明:一下所有链接均来自互联网,在此记录下我的查阅学习历程,感谢各位原创作者的无私奉献 ! 技术一点一点积...
    远航的移动开发历程阅读 13,890评论 12 197
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 14,389评论 4 61
  • 本宝宝今天真是醉了!本来很开心的上了xxx公交车,我坐在了最后一排玩手机,书包放在了一排的坐位,过了一会儿...
    中二病X小妖精阅读 1,234评论 0 0
  • 你明朗的笑容和深深的酒窝 抬头45度角对准有阳光的天空 自行车快速穿梭而过的那样青春 那些纯净的天和燥热空气 那些...
    Ko先森阅读 4,057评论 1 2

友情链接更多精彩内容