我使用parse在视图控制器中设置三个文本字段中的对象,如下所示:
PFObject *profile = [PFObject objectWithClassName:@"Profile"];
[profile setObject:_setArtistName.text forKey:@"artistName"];
[profile setObject:_setGenre.text forKey:@"genre"];
[profile setObject:_setDescription.text forKey:@"description"];
点击“提交”按钮后,解析设置对象。我想知道如何检索这些对象以填充相同的文本字段,因此当用户返回到视图控制器时,文本字段已经从他之前输入的信息填充。
答案 0 :(得分:0)
根据官方doc:
如果你有objectId,你可以使用PFQuery检索整个PFObject。替换" xWMyZ4YEGZ"用你自己的objectId。
PFQuery *query = [PFQuery queryWithClassName:@"Profile"];
[query getObjectInBackgroundWithId:@"xWMyZ4YEGZ" block:^(PFObject *userProfile, NSError *error) {
// Do something with the returned PFObject.
NSLog(@"%@", userProfile);
}];