0 是否可以从Xcode中保存和检索用户类(包括UserName& Password& Email ...)中的数据。如下面的例子所示,我希望有“城市”栏目......
objectID username password authData city
-------- -------- --------- -------- ------
B873Jkd User1 *** Istanbul
8Jj382 User2 *** Paris
82j92jL User3 *** London
由于
答案 0 :(得分:0)
是的,您可以添加许多列,然后在用户类之间发送和接收数据。请注意,要查询用户,您必须使用[PFUser query]
。
阅读完评论后,我更新了答案:
PFUser *typeOfUser;
[typeOfUser setObject:@"istanbul" forKey:@"city"];
[typeOfUser setObject:@"turkey" forKey:@"country"];
//and so on and so on....this will save directly to your User class and not to a second user class.