我正在开发iOS应用程序,并且在我的地图视图中遇到了自定义注释的问题。
以下是这个想法:
1)我将用户位置加载到地图中,从此位置向我的后端服务器发送请求以检索所有附近的兴趣点。
2)我有一个自定义注释如下:
class CustomPointAnnotation: MKPointAnnotation {
var imageName: String?
var activeImageName : String?
var trainCrossingId : Int?
var notificationCount : UILabel = UILabel()
var labelIsHidden : Bool = true
}
当我将注释添加到地图上时,我正在动态设置notificationCount
标签,以使用我从Firebase数据库中检索到的数据。
3)用户能够增加/减少当前位置周围的半径大小。选中此新半径后,我使用mapView.removeAnnotations(mapView.annotations)
删除所有注释,然后使用所选半径重新添加这些注释以及从服务器检索到的新数据。
问题:
最初加载视图时,注释按预期正常工作,并设置了正确的标签等。
但是,一旦用户更新半径并删除/添加以前的注释,注释及其相应的标签就不会按预期显示。
例如,这是首次进入视图时地图的样子:
预期数据是初始图像中显示的内容(首次进入视图时),但更新半径时,我的注释的z值未得到遵守,notificationCount
不正确(例如,第二个图中找到的第三个点不应该有标签)。这很奇怪,因为我已经设置了打印语句和断点来监视func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {...}
中的每个注释,并且值是正确的和我期望的,但是视图没有显示这些值。
关于这里可能出现什么问题的任何想法?提前谢谢!
编辑以包含以下mapView委托:
// Custom annotation view
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
if !(annotation is CustomPointAnnotation) {
return nil
}
let reuseId = "trainPin"
var anView = mapView.dequeueReusableAnnotationView(withIdentifier: reuseId)
if anView == nil {
anView = MKAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
}
else {
anView?.annotation = annotation
}
let cpa = annotation as! CustomPointAnnotation
let icon : UIImageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 32, height: 32))
icon.image = UIImage(named:cpa.imageName)
icon.layer.zPosition = 1
anView?.rightCalloutAccessoryView = cpa.annotationButton
anView?.addSubview(cpa.notificationCount)
anView?.addSubview(icon)
anView?.frame = CGRect(x: 0, y:0, width:32, height:32)
anView?.canShowCallout = true
return anView
}
答案 0 :(得分:1)
我相信,当anView
将被重复使用时,在删除和添加注释时,视图将包含许多子视图。尝试先删除子视图,然后重新添加:
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
if !(annotation is CustomPointAnnotation) {
return nil
}
let reuseId = "trainPin"
var anView = mapView.dequeueReusableAnnotationView(withIdentifier: reuseId)
if anView == nil {
anView = MKAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
}
else {
anView?.annotation = annotation
}
let cpa = annotation as! CustomPointAnnotation
let icon : UIImageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 32, height: 32))
icon.image = UIImage(named:cpa.imageName)
icon.layer.zPosition = 1
anView?.rightCalloutAccessoryView = cpa.annotationButton
for view in anView?.subviews {
view.removeFromSuperView()
}
anView?.addSubview(cpa.notificationCount)
anView?.addSubview(icon)
anView?.frame = CGRect(x: 0, y:0, width:32, height:32)
anView?.canShowCallout = true
return anView
}