Deleting cells from UICollectionView via NSNotification
问题 I have a simple UICollectionView based app - one UICollectionView and a NSMutableArray based data model for simplicity. I can delete cells with no problem via the didSelectItemAtIndexPath: delegate method: -(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{ [self.data removeObjectAtIndex:[indexPath row]]; [self.collectionView deleteItemsAtIndexPaths:@[indexPath]]; } However, I'm trying to add a delete option via a UIMenuController in a