按钮加了长按手势,每次长按,手势事件都连续执行多次怎么办,我想让它只执行一次
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按钮加了长按手势,每次长按,手势事件都连续执行多次怎么办,我想让它只执行一次相关的知识,希望对你有一定的参考价值。
参考技术A 最简单的就是加一个标示,比如一个int为1的时候执行,后面直接return 参考技术B 楼上版主对头,在长按手势里面加上状态的判断就可以了~~ 参考技术C [mw_shl_code=c,true]-(void)handlePress:(UILongPressGestureRecognizer *)sender if (sender.state == UIGestureRecognizerStateBegan) //TODO:}}[/mw_shl_code]Mapbox长按手势后在地图上查找注释
【中文标题】Mapbox长按手势后在地图上查找注释【英文标题】:Mapbox find annotation on the map after long press gesture 【发布时间】:2016-06-10 13:02:37 【问题描述】:我是 iOS 开发和 mapbox 的新手,如果问题听起来很愚蠢,我很抱歉,但我在任何地方都找不到答案。 我有一张地图和注释。当用户触摸并按住注释(长按手势)时,我想显示一些其他信息。我得到了长按手势来工作,但是找到了找到被触摸的注释的方法,或者至少是它的索引。到目前为止,我是这样的:
class eventsMapController: UIViewController, MGLMapViewDelegate
override func viewDidLoad()
super.viewDidLoad()
mapView.autoresizingMask = [.FlexibleWidth, .FlexibleHeight]
// Set the map's bounds to Oslo 59.920269,10.71167
//let bounds = MGLCoordinateBounds(sw: CLLocationCoordinate2D(latitude: 59.925861, longitude: 10.712185),
// ne: CLLocationCoordinate2D(latitude: 59.889798, longitude: 10.794754))
view.addSubview(mapView)
// Set the map view‘s delegate property
mapView.delegate = self
let myGesture = UILongPressGestureRecognizer(target: self, action: #selector(eventsMapController.testLongGesture))
myGesture.minimumPressDuration = 0.8
mapView.addGestureRecognizer(myGesture)
func testLongGesture(long: UILongPressGestureRecognizer)
if long.state == .Began
print("begin", long)
我正在添加这样的注释
let pointAnotation = MGLPointAnnotation()
pointAnotation.coordinate = CLLocationCoordinate2DMake(event.lat, event.lng)
pointAnotation.title = name
pointAnotation.subtitle = headline
self.mapView.addAnnotation(pointAnotation)
请帮帮我,我花了好几个小时才弄明白。
【问题讨论】:
【参考方案1】:我想我首先要尝试的是实现委托方法mapView(_:didSelectAnnotation:)
。我不确定当长按发生时是否会调用它,但如果是这样,它会通过告诉您使用哪个注释来使事情变得相对简单。
如果没有,您可能需要执行以下操作:
找出长按位置对应的地图坐标。比如:
let longPressPoint : CGPoint = long.locationInView(mapView)
let longPressCoordinate = mapView.convertPoint(longPressPoint, toCoordinateFromView:mapView)
这会给你一个与长按位置相对应的CLLocationCoordinate2D
。
遍历您的注释,将每个人的坐标与长按坐标进行比较,以找到接近长按的坐标。请记住,长按可能不在任何注释上,因此不要自动选择最接近的注释。
【讨论】:
以上是关于按钮加了长按手势,每次长按,手势事件都连续执行多次怎么办,我想让它只执行一次的主要内容,如果未能解决你的问题,请参考以下文章
SwiftUI手势(Gesture)进阶 : 实现任意视图的长按惯性加速行为
SwiftUI手势(Gesture)进阶 : 实现任意视图的长按惯性加速行为
SwiftUI手势(Gesture)进阶 : 实现任意视图的长按惯性加速行为