newIndexPath
和indexPath
相同[0, 0]
时,此行遭遇崩溃。是否有可能导致崩溃?
case .Move:
self.collectionView!.reloadItemsAtIndexPaths([newIndexPath!, indexPath!])
错误消息:
- [UICollectionViewUpdateItem _isCell]:无法识别的选择器发送到实例0x1289f4b90
答案 0 :(得分:0)
错误消息很明确:您有一个UICollectionViewUpdateItem实例,它不了解消息_isCell。在Objective-C异常上设置断点以找出发生这种情况的位置。看起来reloadItemsAtIndexPaths本身没有问题。