如何保存解析我创建的EndMechanism
?
MKPointAnnotation
答案 0 :(得分:0)
您无法直接将MKPointAnnotation
保存到Parse。您可能希望保存其coordinate
,title
和subtitle
等属性。
如果你想保存坐标,你应该把它们分成纬度和经度。
在Parse中你可以创建一个新类,调用它" Annotations",添加名为" Title"," Subtitle"," Latitude&#的列34;和"经度",并以这种方式保存您的数据:
let myObject = PFObject(className: "Annotations")
myObject["Title"] = nomeField.text
myObject["Subtitle"] = descrizioneField.text
myObject["Latitude"] = puntoRicordo.latitude
myObject["Longitude"] = puntoRicordo.longitude
myObject.saveInBackgroundWithBlock {
(success: Bool, error: NSError?) -> Void in
if (success) {
print("Data saved to Parse.")
} else {
print(error)
}
}