를 누를 때 UILongPressGestureRecognizer가 두 번 호출됩니다. 사용자가 2초 동안 누른 경우 감지하는 중입니다. UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; longPress.minimumPressDuration = 2.0; [self addGestureRecognizer:longPress]; [longPress release]; 이것이 긴 프레스를 다루는 방법입니다. -(void)handleLongPress:(UILongPressGestureRecognizer*)recognizer{..