作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我添加了 MKPinAnnotationView 和 setDragAble。我的代码在这里
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
MKPinAnnotationView *annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"pin"];
[annotationView setDraggable:YES];
annotationView.pinColor = MKPinAnnotationColorPurple;
return [annotationView autorelease];
}
好的,我可以拖动图钉。
但有一个问题是这不仅仅是一次点击。总是需要第二次点击。
当我第一次点击图钉时,图钉被选中但无法拖动。当我再次点击时,可以拖动。
怎么了?我想要像“Map.app”这样的一键拖动
最佳答案
解决这个问题。 ^^
我认为对于拖动引脚,引脚已被选择。
因此在初始化时选择了 MKPinAnnotationView。
我的新代码。
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
MKPinAnnotationView *annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"pin"];
[annotationView setDraggable:YES];
annotationView.pinColor = MKPinAnnotationColorPurple;
[annotationView setSelected:YES animated:YES];
return [annotationView autorelease];
}
关于iphone - 如何只需轻轻一按即可拖动 MKPinAnnotationView 引脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5068637/
我是一名优秀的程序员,十分优秀!