0
UILongPressGestureRecognizer *longPressOnUndoGesture = [[UILongPressGestureRecognizer alloc]
initWithTarget:self
action:@selector(handleLongPressOnUndoGesture:)];
[longPressOnUndoGesture setMinimumPressDuration:2.0];
[longPressOnUndoGesture release];
我有上面的代碼deasctivate在我的應用autoscroll計時器這是這個功能。UILongPressGesture iphone iphone sdk
-(void) handleLongPressOnUndoGesture:(UILongPressGestureRecognizer*)recognizer {
[autoscrollTimer invalidate];
}
但是當我taptohold 2秒鐘它不會停止timer.is在我的代碼中有任何錯誤的手勢。 在此先感謝。
我的天啊,非常感謝。 – stackiphone
如果有幫助,你可以請upvote&accept。謝謝。 – 2012-01-24 09:31:37