如何更新Swift中的Parse用户信息?

时间:2015-08-02 19:13:10

标签: ios swift parse-platform

我试图在我的应用中更新解析用户信息,但我不知道如何更新它。

在我的视图控制器中,我有UsernameTxtFieldNicknameTxtFieldPasswordTxtFieldUpdateButton

我希望用户在文本字段中设置信息,然后按“更新”按钮在Parse.com上更新它们。

我该如何进行查询?

var query = PFQuery(className: "_User")

我该怎么做?有人可以给我一个类似的代码吗?

2 个答案:

答案 0 :(得分:3)

您可以执行以下操作来编辑和保存PFUser的数据:

if let currentUser = PFUser.currentUser(){
    currentUser["Username"] = "John Smith"
    //set other fields the same way....
    currentUser.saveInBackground()
}

答案 1 :(得分:0)

PFUserPFObject子类,因此您可以轻松地将其编辑为任何其他Parse对象。