如何将MKPointAnnotation保存到Pars?

时间:2015-11-21 14:21:09

标签: swift parse-platform mkannotation pfobject geopoints

如何保存解析我创建的EndMechanism

MKPointAnnotation

1 个答案:

答案 0 :(得分:0)

您无法直接将MKPointAnnotation保存到Parse。您可能希望保存其coordinatetitlesubtitle等属性。

如果你想保存坐标,你应该把它们分成纬度和经度。

在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)
    }
}