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 nhấn xuống lâu hơn 2 giây. Tại sao lại thế này? Làm thế nào tôi có thể sửa chữa?