设置用户PFObject

时间:2015-05-22 22:52:37

标签: ios parse-platform pfobject pfuser

我正在使用 Parse 构建应用,并且需要能够为他们创建的给定帖子保存当前用户(PFUser)。然后,我需要能够在其他用户查看他们的帖子时检索该数据 - 这样他们就可以看到该人的个人资料图片。

我在这里使用了什么 - PFObject和PFPointer?请显示代码示例。

1 个答案:

答案 0 :(得分:1)

首先,我认为您应该转到 Parse 指南,因为它们提供了良好的文档。这非常有帮助。只是不要懒惰阅读。顺便说一句, Parse 没有一个叫PFPointers的东西。

你可以尝试一下:

let post = PFObject(className: "Post")
post["creator"] = PFUser.currentUser()
post.saveInBackgroundWithBlock {(done: Bool, error: NSError?) in

}

let postQuery = PFQuery(className: "Post")
postQuery.whereKey("creator", equalTo: PFUser.currentUser());
postQuery.findObjectsInBackgroundWithBlock {(result: [AnyObject]?, error: NSError?) in

}