0
コレクションビューでUILongPressGestureRecognizerを使用しています。長いプレスのジェスチャ認識機能が一定の条件を満たす場合にのみ動作します。特定の条件が満たされたときにLongPressを検出します。
NSString *check;
if([check isEqualToString:@"Enabled"]
{
//long press should be detected. or following method should be called
}
-(void)handleLongPressGesture:(UILongPressGestureRecognizer *)gestureRecognizer
{
}
'shouldRecognizeSimultaneouslyWithGestureRecognizer'は、この目的のために使用することはできませんを追加します。 gestureRecognizerShouldBeginは正しいものです。 –