ストーリーボードで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;