- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望在 MKMapView 上创建一个“长按”针落点。
目前,一切都按照我想要的方式进行,当您点击并按住 map 时,它会注册手势并且代码会放置一个图钉。
-(void)viewDidLoad
{
[self.mapView addGestureRecognizer:longPressGesture];
}
-(void)handleLongPressGesture:(UIGestureRecognizer*)sender
{
if(sender.state == UIGestureRecognizerStateBegan || sender == nil)
{
CGPoint point = [sender locationInView:self.mapView];
CLLocationCoordinate2D locCoord;
locCoord = [self.mapView convertPoint:point toCoordinateFromView:self.mapView];
//Drop Pin
}
}
也就是说,只有当您距离 MKUserLocation 注释(蓝色脉冲点)不太近时,它才有效,否则手势不会注册,并且会调用 didSelectAnnotationView:
函数。
有没有办法忽略用户点击MKUserLocation
注释?我一直在寻找类似 setUserEnabled
的东西,但 MKAnnotations 不存在它。
最佳答案
MKAnnotationView
类有一个 enabled
属性(不是 id<MKAnnotation>
对象)。
设置enabled
在 map View 的用户位置注释 View 上,在 mapView:didAddAnnotationViews:
中获取对它的引用委托(delegate)方法:
-(void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views
{
MKAnnotationView *av = [mapView viewForAnnotation:mapView.userLocation];
av.enabled = NO; //disable touch on user location
}
(在 viewForAnnotation
中,您必须返回 nil
来告诉 map View 创建 View 本身,因此不能在那里设置 enabled
—— 至少对于用户位置而言。)
关于ios - 忽略 MKUserLocation 选择来注册 UILongTapGestureRecognizer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22840346/
我希望在 MKMapView 上创建一个“长按”针落点。 目前,一切都按照我想要的方式进行,当您点击并按住 map 时,它会注册手势并且代码会放置一个图钉。 -(void)viewDidLoad {
我需要同时使用 UILongTapGestureRecognizer 和 UIPinchGestureRecognizer。 不幸的是,UILongTapGestureRecognizer 的第一次触
我是一名优秀的程序员,十分优秀!