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
In my case, the number of cells/sections in the datasource never changed and I just wanted to reload the visible content on the screen..
I managed to get around this by calling:
[self.collectionView reloadItemsAtIndexPaths:[self.collectionView indexPathsForVisibleItems]];
then:
[self.collectionView reloadData];