我的目的是为用户在注册时确定的字符串创建一个新列。
通过仪表板,我为这个字符串添加了一个名为" birthcountry"的新列。
我尝试在xcode中使用新列
let myUser = PFUser()
myUser.username = userEmail
myUser.password = userPassword
myUser.email = userEmail
myUser.birthcountry = birthcountry
我收到了错误:
"' pfuser'没有会员和出生国家' "
答案 0 :(得分:0)
尝试写作 让myUser = PFuser()
Myuser.setValue(useremail,forKey:“username”) Myuser.setValue(userPassword,forKey:“password”) 等...
或者您是否尝试从解析中下载值?
答案 1 :(得分:0)
Xcode应该如何在编译时动态地知道在一些任意后端你添加了一个新列?尝试通过myUser [“birthcountry”] = birthcountry设置数据。 - luk2302