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 सेकंड से अधिक …