興味深いアニメーションで UICollectionView をリロードしたいと思います。UITableView には というメソッドがありreloadSections:withRowAnimation
ます。しかし、UICollectionView にはreloadSections
.
reloadSections アニメーションをカスタマイズするにはどうすればよいですか? これは間違いなく App Store のアプリで見ました。
興味深いアニメーションで UICollectionView をリロードしたいと思います。UITableView には というメソッドがありreloadSections:withRowAnimation
ます。しかし、UICollectionView にはreloadSections
.
reloadSections アニメーションをカスタマイズするにはどうすればよいですか? これは間違いなく App Store のアプリで見ました。
そのようにしてください:
[self.collectionView performBatchUpdates:^{
[self.collectionView reloadSections:[NSIndexSet indexSetWithIndex:0]];
} completion:nil];
スウィフト 3 バージョン:
collectionView.performBatchUpdates({
let indexSet = IndexSet(integer: 0)
self.collectionView.reloadSections(indexSet)
}, completion: nil)