使用:Xcode 8,Swift 3.0
所以我当前正试图通过查询解析服务器来填充表。
这是我目前的代码:
var queryTwo = PFQuery(className:"Agenda")
queryTwo.whereKey("userEmail", equalTo:"ronadams@gmail.com")
queryTwo.findObjectsInBackground {
(objects: [PFObject]?, error: Error?) -> Void in
if error == nil {
// The find succeeded.
print("Successfully retrieved \(objects!.count) scores.")
// Do something with the found objects
if let objects = objects {
for object in objects {
self.timeArray.append(object.object(forKey: "title") as! String)
self.titleArray.append(object.object(forKey: "description") as! String)
}
}
} else {
// Log details of the failure
self.timeLabel.text = "Error"
}
}
为什么没有信息被添加到数组中?我的数据库有2个该电子邮件的条目。但即使查询成功,也没有任何东西被添加到数组中。
谢谢!