使用 XCode v7.0 Beta 4
我尝试通过 map.addAnnotation(myareahere) 向该地图添加可见图钉,如您在此处看到的:
let myareahere = CLLocationCoordinate2DMake(51.5072, -0.1275)
let annotation = MKPointAnnotation()
annotation.coordinate = myareahere
annotation.title = "Name of My Area"
annotation.subtitle = "Sleep Here"
map.addAnnotation(myareahere)
这当然都包含在 viewDidLoad 函数中。我在最后一行 (map.addAnnotation(myareahere)) 给出的错误是“无法使用列表类型 (CLLocationCoordinates2D) 的参数调用 'addAnnotation'”。这让我感到困惑,因为我不知道我还会使用什么。