Avoid animation of UICollectionView after reloadItemsAtIndexPaths
问题 UICollectionView animate items after reloadItemsAtIndexPaths is called (fade animation). Is there a way to avoid this animation? iOS 6 回答1: You could also try this: UICollectionView *collectionView; ... [UIView setAnimationsEnabled:NO]; [collectionView performBatchUpdates:^{ [collectionView reloadItemsAtIndexPaths:indexPaths]; } completion:^(BOOL finished) { [UIView setAnimationsEnabled:YES]; }]; Edit: I have also found that if you wrap performBatchUpdates in a UIView animation block, the