所以我想制作一个在当前位置设置注释的按钮。我有我的所有地图内容和核心位置代码工作它只是按钮。这是我的按钮功能代码:
@IBAction func addAnnotation(_ sender: UIButton) {
CLLocationManager().startUpdatingLocation()
let annotation = MKPointAnnotation()
// Set the annotation by the lat and long variables
annotation.coordinate = CLLocationCoordinate2D(latitude: 0.0, longitude: 0.0)
annotation.title = "User location"
self.map.addAnnotation(annotation)
}
现在,当我运行此代码时,我的AppDelegate.swift中出现了SIGABRT错误。请帮助。