UICollectionView reloadData not functioning properly in iOS 7

后端 未结 17 1445
北荒
北荒 2020-11-27 11:18

I\'ve been updating my apps to run on iOS 7 which is going smoothly for the most part. I have noticed in more than one app that the reloadData method of a

17条回答
  •  一个人的身影
    2020-11-27 11:56

    Check that each one of the UICollectionView Delegate methods does what you expect it to do. For example, if

    collectionView:layout:sizeForItemAtIndexPath:
    

    doesn't return a valid size, the reload won't work...

提交回复
热议问题