我正在构建和应用程序,它通过解析将对象保存在本地数据存储中。然后我运行一个查询来检索本地数据存储中的对象,它工作正常。但是,我想抓取对象及其中的内容,并根据存储在解析本地数据存储对象中的项目在表格视图单元格中设置一些标签。例如,我制作了一个具有“objectID”、“name”、“date”、“location”等属性的对象。我想做的是在主屏幕上有一个表格视图,显示名称、日期、位置……等。在每个单元格的标签中保存在本地数据存储中的每个项目。
我知道我正确保存它:
// parse location object
let parseLighthouse = PFObject(className: "ParseLighthouse")
parseLighthouse.setObject(PFUser.currentUser()!, forKey: "User")
parseLighthouse["Name"] = self.placeTitle.text
parseLighthouse["Note"] = self.placeNote.text
parseLighthouse["Locality"] = self.placeDisplay.text!
parseLighthouse["Latt"] = self.map.region.center.latitude
parseLighthouse["Longi"] = self.map.region.center.longitude
parseLighthouse["LattDelta"] = 0.5
parseLighthouse["LongiDelta"] = 0.5
parseLighthouse["Date"] = dateInFormat
parseLighthouse.pinInBackground()
parseLighthouse.saveInBackgroundWithBlock { (success: Bool, error: NSError?) -> Void in
println("Object has been saved. ID = \(parseLighthouse.objectId)")
}
当我运行查询时,我能够通过运行 println(object.objectForKey("Name")) 访问属性
func performQuery() {
let query = PFQuery(className: "ParseLighthouse")
query.fromLocalDatastore()
query.whereKey("User", equalTo: PFUser.currentUser()!)
query.findObjectsInBackgroundWithBlock { (objects, error) -> Void in
if error == nil {
// The find succeeded.
println("Successfully retrieved \(objects!.count) lighthouses.")
// Do something with the found objects
if let light = objects as? [PFObject] {
for object in light {
println(object.objectId)
println(object.objectForKey("Name"))
}
}
} else {
// Log details of the failure
println("Error: \(error!) \(error!.userInfo!)")
}
}
因为在运行查询时,我按预期取回了对象 ID 和名称。
成功取回 2 座灯塔。可选(“A3OROVAMIj”)可选(快乐)可选(“bbyqPZDg8W”)可选(日期测试)
我想做的是在解析对象本地数据存储中获取名称字段,这是表格视图控制器中单元格上的标签名称。
我不知道如何从对象访问该信息,并正确设置标签。
有谁知道这怎么可能?