如何通过单击按钮在当前位置添加注释

时间:2017-08-26 14:27:38

标签: ios swift3 core-location

所以我想制作一个在当前位置设置注释的按钮。我有我的所有地图内容和核心位置代码工作它只是按钮。这是我的按钮功能代码:

@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错误。请帮助。

0 个答案:

没有答案