7
UILongPressGestureRecognizer được gọi hai lần khi nhấn xuống
Tôi đang phát hiện nếu người dùng đã nhấn xuống trong 2 giây: UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; longPress.minimumPressDuration = 2.0; [self addGestureRecognizer:longPress]; [longPress release]; Đây là cách tôi xử lý báo chí dài: -(void)handleLongPress:(UILongPressGestureRecognizer*)recognizer{ NSLog(@"double oo"); } Văn bản "double oo" được in hai lần khi tôi …