我需要创建一个继承自MKAnnotation的协议:
protocol Annotable: MKAnnotation {
...
}
class Annotation: NSObject, Annotable {
var title: String?
var coordinate: CLLocationCoordinate2D
init(title: String, coordinate: CLLocationCoordinate2D) {
self.title = title
self.coordinate = coordinate
}
}
将一些注释添加到mapView时没有问题。
mapView.addAnnotations([Annotation(...), Annotation(...), ...]
但是当我尝试循环注释集合时,应用程序在运行时崩溃:
for annotation in mapView.annotations { // fatal error: NSArray element failed to match the Swift Array Element type
print(annotation.title)
}
我的问题很简单:为什么?
由于Annotation符合MKAnnotation,因此将它们添加到mapView并不奇怪。那么我们为什么不能找回它们呢?
非常感谢!
答案 0 :(得分:2)
您可以通过将协议声明为@objc
协议来解决此问题:
@objc protocol Annotable: MKAnnotation {
...
}