1

似乎这与这种方法有关,尽管我很难区分如何区分 Selector 被称为:

-(BOOL)collectionView:(UICollectionView *)collectionView canPerformAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
{
     if ( action.type? name? == "willMoveToIndexPath"  && sender == cellToNotMove?? )  return NO;

     return YES;
}

似乎这样的事情可能会奏效,对干净的实施有什么建议吗?

谢谢

4

1 回答 1

0

这对我来说看起来不错,除了 use action == @selector(willMoveToIndexPath)

于 2012-12-17T17:46:27.530 回答