作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的自定义 MKAnnotationView 有问题。我从我的 REST api 下载坐标并将其放置在何处,然后使用以下代码将图钉放置在 map 上:
private func refreshMapView(andCenterMap: Bool){
DispatchQueue.main.async { [weak self] in
guard let self = self else {
return
}
self.mapView.addAnnotations(self.spotsArray)
if andCenterMap {
self.centerMap(at: self.mapView.userLocation.coordinate)
}
}
}
放置大头针后我会自动缩放 map 。
这里是自定义注释创建的代码:
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
// Do not touch the annotation of the user location
if annotation.isKind(of: MKUserLocation.self){
return nil
}
let annoIdentifier = "SPOT"
var annotationView: MKAnnotationView?
if let dequeued = mapView.dequeueReusableAnnotationView(withIdentifier: annoIdentifier) {
annotationView = dequeued
}else{
let av = MKAnnotationView(annotation: annotation, reuseIdentifier: annoIdentifier)
annotationView = av
}
// Changing the image of the pin
annotationView!.annotation = annotation
if let image = UIImage(named: "map_pin") {
annotationView!.image = image
let deltaY = image.size.height/2
annotationView!.centerOffset = CGPoint(x: 0.0, y: -deltaY)
}else{
annotationView!.image = nil
}
return annotationView
}
如您所见,我的自定义图钉使用的是这张图片(@1x、@2x、@3x)
点击的我想显示“详细 View ”,我使用注释作为发送者以便在下一个 View 中获得我需要的所有信息。这里的代码:
func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView) {
guard let ann = view.annotation else {
return
}
if ann.isKind(of: MKUserLocation.self){
return
}
self.performSegue(withIdentifier: "showDetailSegue", sender: ann)
}
所以我展示了我需要的所有数据,然后我可以返回到“ map View ”。
问题是:
在 map View 中,如果我想再次选择相同的注释,则无法再点击。
我可以看到它(在正确的位置),但只有当我放大一点并点击“围绕”注释时才能再次选择它。
对如何解决这个问题有什么建议吗?
提前致谢!
最佳答案
添加 didSelect
的这一端
mapView.deselectAnnotation(ann,animated:false)
关于swift - 自定义 MKAnnotationView 想要再次被点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56675228/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!