无法从Parse对象中检索createdAt值

我无法从每个对象的Parse中获取createdAt值。而且当数据坐在那里时,我不希望将其他时间戳保存为string。

这是我正在做的事情的清单。我希望有人能够帮助———————————- ————————————

var followArray = [String]() var resultsNameArray = [String]() var resultsIcon = [PFFile]() var resultsImgArray = [PFFile?]() var resultsTimeTampArray = [NSDate?]() ------------------------------------------------------------------- func refreshResult() { var followQuery = PFQuery(className: "Follow") followQuery.whereKey("user", equalTo: PFUser.currentUser()!.username!) followQuery.findObjectsInBackgroundWithBlock { (objects: [AnyObject]?, error: NSError?) -> Void in if error == nil { for object in objects! { self.followArray.append(object.objectForKey("Following") as! String) } var query = PFQuery(className: "Moments") query.whereKey("userName", containedIn: self.followArray) query.addDescendingOrder("createdAt") query.findObjectsInBackgroundWithBlock { (objects: [AnyObject]?, error: NSError?) -> Void in if error == nil { for object in objects! { self.resultsNameArray.append(object.objectForKey("profileName") as! String) self.resultsIcon.append(object.objectForKey("icon") as! PFFile) self.resultsImgArray.append(object.objectForKey("image") as? PFFile) //tried to use "createdAt" property but it i still getting nil value from Parse self.resultsTimeTampArray.append(object.objectForKey("createdAt") as! NSDate) } //reload table self.resultsTable.reloadData() } } } } ----------------------------------------------------------------------- func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { var cell:TimelineCell = tableView.dequeueReusableCellWithIdentifier("Cell") as! TimelineCell enter code here //I'v got an error here! //fatal error: unexpectedly found nil while unwrapping an Optional value // dataFormatter var dateFormatter:NSDateFormatter = NSDateFormatter() dateFormatter.dateFormat = "yyyy-MM-dd" var strDate = dateFormatter.stringFromDate(self.resultsTimeTampArray[indexPath.row]!) return cell } 

不要使用objectForKey访问它,只需通过objectForKey属性直接访问它。

正如文档中明确指出的,关键是:

这不包括createdAt,updatedAt,authData或objectId。 它包括诸如用户名和ACL之类的东西。

你可以像这样直接在你的对象循环中访问它。

 object.updatedAt 

代替

 objectforkey("updatedAt")