我正在使用MapKit,我正在尝试在我的引脚上设置自定义引脚注释图像。但是,我很难弄清楚它为什么不起作用。所有其他代码都运行得很好,当我在设置后尝试打印图像的帧时,它确实显示了我的“pinImage”的正确尺寸,所以它似乎能够在属性上设置图像。 / p>
此外,代理设置正确,通过在默认引脚上设置自定义颜色来验证。
我也试过使用“pinImage.png”,没有运气。由于MKPinAnnotationView是MKAnnotationView的子类,我认为为什么这应该是问题没有问题,并且可以肯定的是,我也尝试使用MKAnnotationView,没有运气。
这是我的代码:
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
if let annotation = annotation as? Pin {
let identifier = LocalConstants.pinIdentifier
var view: MKPinAnnotationView
if let dequeuedView = mapView.dequeueReusableAnnotationView(withIdentifier: identifier) as? MKPinAnnotationView {
dequeuedView.annotation = annotation
view = dequeuedView
} else {
view = MKPinAnnotationView(annotation: annotation, reuseIdentifier: identifier)
view.canShowCallout = true
view.calloutOffset = CGPoint(x: -5, y: 5)
let detailButton = UIButton(type: .detailDisclosure) as UIView
view.rightCalloutAccessoryView = detailButton
//view.pinTintColor = Util.Colors.pluppPurple
}
view.image = UIImage(named: "pinImage")
return view
}
提前致谢!
答案 0 :(得分:0)
答案确实是使用MKAnnotationView而不是MKPinAnnotationView。昨天尝试时,我不知道我搞砸了什么。下面的最终工作副本,供将来参考:
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
if let annotation = annotation as? Pin {
let identifier = LocalConstants.pinIdentifier
var view: MKAnnotationView
if let dequeuedView = mapView.dequeueReusableAnnotationView(withIdentifier: identifier) {
dequeuedView.annotation = annotation
view = dequeuedView
} else {
view = MKAnnotationView(annotation: annotation, reuseIdentifier: identifier)
view.canShowCallout = true
view.calloutOffset = CGPoint(x: -5, y: 5)
view.tintColor = Util.Colors.pluppGrey
let detailButton = UIButton(type: .detailDisclosure) as UIView
view.rightCalloutAccessoryView = detailButton
}
view.image = UIImage(named: LocalConstants.pluppPin)
return view
}
return nil
}