当我尝试遵循MKAnnotation
协议时,它会抛出错误,我的类不符合协议MKAnnotation
。我使用以下代码
import MapKit
import Foundation
class MyAnnotation: NSObject, MKAnnotation
{
}
Objective-C可以做同样的事情。
答案 0 :(得分:10)
您需要在调用中实现以下必需属性:
class MyAnnotation: NSObject, MKAnnotation {
var myCoordinate: CLLocationCoordinate2D
init(myCoordinate: CLLocationCoordinate2D) {
self.myCoordinate = myCoordinate
}
var coordinate: CLLocationCoordinate2D {
return myCoordinate
}
}
答案 1 :(得分:2)
在Swift中,您必须实现协议的每个非可选变量和方法,以符合协议。现在,你的类是空的,这意味着它现在不符合MKAnnotation
协议。如果你看一下MKAnnotation
的声明:
protocol MKAnnotation : NSObjectProtocol {
// Center latitude and longitude of the annotation view.
// The implementation of this property must be KVO compliant.
var coordinate: CLLocationCoordinate2D { get }
// Title and subtitle for use by selection UI.
optional var title: String! { get }
optional var subtitle: String! { get }
// Called as a result of dragging an annotation view.
@availability(OSX, introduced=10.9)
optional func setCoordinate(newCoordinate: CLLocationCoordinate2D)
}
你可以看到,如果你至少实现coordinate
变量,那么你就符合协议。
答案 2 :(得分:1)
这是一个更简单的版本:
class CustomAnnotation: NSObject, MKAnnotation {
init(coordinate:CLLocationCoordinate2D) {
self.coordinate = coordinate
super.init()
}
var coordinate: CLLocationCoordinate2D
}
您无需将额外属性var myCoordinate: CLLocationCoordinate2D
定义为已接受的答案。
答案 3 :(得分:0)
或者(适用于Swift 2.2,Xcode 7.3.1)(注意:Swift不提供自动通知,所以我自己投入。) -
import MapKit
class MyAnnotation: NSObject, MKAnnotation {
// MARK: - Required KVO-compliant Property
var coordinate: CLLocationCoordinate2D {
willSet(newCoordinate) {
let notification = NSNotification(name: "MyAnnotationWillSet", object: nil)
NSNotificationCenter.defaultCenter().postNotification(notification)
}
didSet {
let notification = NSNotification(name: "MyAnnotationDidSet", object: nil)
NSNotificationCenter.defaultCenter().postNotification(notification)
}
}
// MARK: - Required Initializer
init(coordinate: CLLocationCoordinate2D) {
self.coordinate = coordinate
}