我已经在情节提要中初始化了一个 longPressGesture,我想将它添加到collectionView
.
问题是:手势仅适用于最后添加的单元格collectionView
这是我的代码:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
MyCollectionCell *cell = (MyCollectionCell*)[collectionView dequeueReusableCellWithReuseIdentifier:@"MyCell" forIndexPath:indexPath];
[cell addGestureRecognizer:longPressGesture];
return cell;
}
.h 文件:
IBOutlet UILongPressGestureRecognizer *longPressGesture;