20

興味深いアニメーションで UICollectionView をリロードしたいと思います。UITableView には というメソッドがありreloadSections:withRowAnimationます。しかし、UICollectionView にはreloadSections.

reloadSections アニメーションをカスタマイズするにはどうすればよいですか? これは間違いなく App Store のアプリで見ました。

4

3 に答える 3

31

そのようにしてください:

[self.collectionView performBatchUpdates:^{
    [self.collectionView reloadSections:[NSIndexSet indexSetWithIndex:0]];
} completion:nil];
于 2013-10-09T13:35:56.707 に答える
26

スウィフト 3 バージョン:

collectionView.performBatchUpdates({
    let indexSet = IndexSet(integer: 0)
    self.collectionView.reloadSections(indexSet)
}, completion: nil)
于 2016-10-27T16:58:01.157 に答える