2
我需要在我的應用程序中一次只識別一個手勢。 有沒有辦法做到這一點?一次只識別一個手勢
我需要在我的應用程序中一次只識別一個手勢。 有沒有辦法做到這一點?一次只識別一個手勢
試試這個
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
return NO;
}
好感謝名單bro.I'll嘗試 – FlaSh 2013-04-21 18:13:19
由於它的工作.. – FlaSh 2013-04-21 18:19:11
歡迎................ – 2013-04-21 18:19:52