我知道这可能很简单,只是不确定我在这里缺少什么需要一双新的眼睛。我在这里明白我需要解开我正在尝试做的事情,但它一直失败,我做错了什么有什么帮助吗?这是代码(我可能会踢自己)
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath:
NSIndexPath) -> UITableViewCell {
var currentLocation = self.locations[indexPath.row]
var displayLocation = currentLocation["User"] as! PFObject
let cell = UITableViewCell()
if let display = displayLocation as PFObject? {
cell.textLabel?.text = display["currentLocation"] as? String
}
return cell
}
抱歉,伙计们忘了提到它在这条线上的失败
var displayLocation = currentLocation["User"] as! PFObject