我在这里找到了这个问题的答案:Store CLLocationCoordinate2D to NSUserDefaults。并且代码是用Objective C编写的。在很大程度上,我了解该链接中的代码发生了什么。但是,我很难将语法翻译成 Swift。而且我认为对其他人也有此翻译会有所帮助。
只是为了重申错误,它是:Cannot invoke 'setObject' with an argument list of type (CLLocationCoordinate2D, forKey: String!)
. 这是导致此问题的语法:
let mapAnnotations = NSUserDefaults.standardUserDefaults()
let newCoordinate = self.mapView.convertPoint(touchPoint, toCoordinateFromView: self.mapView)
var title: String! = ""
self.mapAnnotations.setObject(newCoordinate, forKey: title) //the error is here
self.mapAnnotations.synchronize()