7
아래로 누를 때 UILongPressGestureRecognizer가 두 번 호출됩니다.
사용자가 2 초 동안 눌렀는지 감지하고 있습니다. UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; longPress.minimumPressDuration = 2.0; [self addGestureRecognizer:longPress]; [longPress release]; 이것이 긴 프레스를 처리하는 방법입니다. -(void)handleLongPress:(UILongPressGestureRecognizer*)recognizer{ NSLog(@"double oo"); } 2 초 이상 누르면 텍스트 "double oo"가 두 번 인쇄됩니다. 왜 이런거야? 어떻게 고칠 수 있습니까?