[self.collectionView performBatchUpdates:^{
NSArray* itemPaths = [self.collectionView indexPathsForSelectedItems];
[self deleteItemsFromDataSourceAtIndexPaths:itemPaths];
[self.collectionView deleteItemsAtIndexPaths:tempArray
} completion:nil];
セル削除のアニメーションの期間を増減したいのですが、このタスクを実行する方法が見つかりません
[UIView animateWithDuration:4.0
delay:0.0
options:UIViewAnimationOptionTransitionNone
animations:^{
NSArray* itemPaths = [self.collectionView indexPathsForSelectedItems];
[self deleteItemsFromDataSourceAtIndexPaths:itemPaths];
[self.collectionView deleteItemsAtIndexPaths:tempArray
} completion:nil];
上記の UIView アニメーションのコードは、UICollectionView では機能しません
UICollectionView cell delete のアニメーション期間を変更するこのタスクを達成する方法はありますか???