[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单元格删除???
的动画持续时间的任务