2019-06-23a few seconds read (About 36 words)How to animate NSCollectionView changesIssue #323 Use proxy animator() 12345let indexPath = IndexPath(item: index, section: 0)collectionView.animator().deleteItems(at: Set(arrayLiteral: indexPath))let indexPath = IndexPath(item: 0, section: 0)collectionView.animator().insertItems(at: Set(arrayLiteral: indexPath))#swiftmacOS