UICollectionView reloadData not functioning properly in iOS 7

Force this on the main thread:

dispatch_async(dispatch_get_main_queue(), ^ {
    [self.collectionView reloadData];
});

Leave a Comment