首页 > 代码库 > UILongPressGestureRecognizer 运行两次的解决的方法
UILongPressGestureRecognizer 运行两次的解决的方法
近期维护之前用iOS SDK 3.2写过的3年多前的map方面的模块,在地图上长按pin,发觉一个点莫名奇异点插了两个pin。
查了一下,原来是如今的sdk要在UILongPressGestureRecognizer绑定的selector方法里对UILongPressGestureRecognizer.state 进行下推断,额。蛋疼。下附问题解决的方法:
//长按地图事件 - (void)longPressGestureRecognizerAction:(UILongPressGestureRecognizer* )gestureRecognizer { if (gestureRecognizer.state == UIGestureRecognizerStateEnded) { NSLog(@"Long press Ended"); } else { NSLog(@"Long press detected."); //OOXX..... } }
參考:
http://www.cocoachina.com/ask/questions/show/108149
http://blog.csdn.net/yu0089/article/details/8244851
UILongPressGestureRecognizer 运行两次的解决的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。