1. 程式人生 > >UICollectionView進行ReloadData時,隱式動畫解決

UICollectionView進行ReloadData時,隱式動畫解決

在重新整理請求後對CollectionView進行reloadData,產生如上圖所示的隱式動畫效果。

解決方式:

[self.collectionView reloadData];
[UIView animateWithDuration:0 animations:^{
    [self.collectionView performBatchUpdates:^{
        [self.collectionView reloadData];
    } completion:nil];
}];