UILongPressGestureRecognizerを次のようにセルに追加します。
UILongPressGestureRecognizer *longpressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressHandler:)];
longpressGesture.minimumPressDuration = 2.5;
longpressGesture.t
[longpressGesture setDelegate:self];
[cell addGestureRecognizer:longpressGesture];
[longpressGesture release];
UILongPressGestureRecognizerが押されたセルを知りたいのですが、タグを追加できません。この情報を見つけるための巧妙なトリックはありますか?