我使用解析后端创建一个应用程序,我保存详细信息,如名称,用户名,密码,性别,以便我面临的问题是更新保存在解析上的详细信息
如何更新该详细信息?
答案 0 :(得分:2)
您需要阅读Parse.com文档iOS Developers Guide
我们假设您要将User
保存到Parse Cloud。界面类似于NSMutableDictionary
,加上saveInBackground
方法:
PFObject *user= [PFObject objectWithClassName:@"User"];
user[@"id"] = @1337;
user[@"name"] = @"Sean Plott";
user[@"password"] = @"abc123";
[user saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (succeeded) {
// The object has been saved.
} else {
// There was a problem, check error.description
}
}];