美文网首页
自定义UICollectionViewFlowLayout打印错

自定义UICollectionViewFlowLayout打印错

作者: HAPPY小元宝 | 来源:发表于2017-07-17 18:17 被阅读21次

    自定义UICollectionViewFlowLayout后打印如下错误:

    Warning: UICollectionViewFlowLayout has cached frame mismatch for index path 'xxx'
    

    解决方法:

    NSArray * original   = [super layoutAttributesForElementsInRect:rect];
    NSArray * attributes = [[NSArray alloc] initWithArray:original copyItems:YES];
    

    链接:https://stackoverflow.com/questions/31508153/warning-uicollectionviewflowlayout-has-cached-frame-mismatch-for-index-path-ab

    相关文章

      网友评论

          本文标题:自定义UICollectionViewFlowLayout打印错

          本文链接:https://www.haomeiwen.com/subject/spjqkxtx.html