类的自定义方法符合MKAnnotation协议

时间:2017-12-03 07:38:40

标签: ios swift mkannotation

我有一个班级:

class MyAnnotion: NSObject, MKAnnotation {

let title: String?
let subtitle: String?
let item: MyCustomItem
let coordinate: CLLocationCoordinate2D

init(customItem: MyCustomItem, currentLocation: CLLocation)  {
    coordinate = item.coordinate
    pageId = "\(item.pageId)"
    title = "\(item.title)"
    item = myCustomItem
}

//TODO: Even though in mapView viewFor: the annotation is a WikiAnnotation, it wont recognize any custom function defined here
func imageUrl() -> String? {
    guard let url = item.imageUrl else {
        return nil
    }
    return url
}
}

当我将注释加载到地图中时,我将其加载为MyAnnotion s。

mapView viewFor:函数会传递MKAnnotation注释,但当我检查它时实际上是MyAnnotation

麻烦的是,如果我尝试访问imageUrl()方法,它会告诉我MKAnnotation没有该方法。

我尝试过各种愚蠢的事情,例如将它作为我的自定义注释并在MKAnnotation上进行扩展。

如何从该自定义类中获取imageUrl的任何想法?

谢谢!

2 个答案:

答案 0 :(得分:1)

正如我在评论中所说,你需要强制转换为自定义注释类

这是代码

func mapView(_ map: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {

        if let customAnnotation = annotation as? MyAnnotion{
           let imageUrl = customAnnotation.imageUrl()
        }
}

答案 1 :(得分:0)

您需要强制转换为MyAnnotation,如下所示:

(annotation as! MyAnnotation).imageUrl()