6
アニメーションを個別に行うと、すべてがうまく動作しますが、ブロック内では、変更は瞬時に行われ、reloadData()
とほぼ同じです。私はそれを正しく使用していますか?NSCollectionView performBatchUpdatesは変更をアニメートしません
の作業方法:
NSAnimationContext.currentContext().duration = 0.25
indexPathChanges.map({collectionView.animator().moveItemAtIndexPath($0.0, toIndexPath: $0.1)})
performBatchUpdates
バージョン(インスタント変更 - なしアニメーション):
NSAnimationContext.currentContext().duration = 0.25
collectionView.performBatchUpdates( {
indexPathChanges.map({self.collectionView.moveItemAtIndexPath($0.0, toIndexPath: $0.1)})
// tried this as well - no luck
// indexPathChanges.map({self.collectionView.animator().moveItemAtIndexPath($0.0, toIndexPath: $0.1)})
}, completionHandler: {(finished) in print("Finished: \(finished)")