我制作了一个使用Parse的小应用程序,我有一个注册viewController,注册后我有一个usersVC
viewController。
在Parse dashboard中,我添加了一个名为profileName
的列,我希望在注册后将该列中的值获取到某个标签。
此处为分析仪表板:
enter image description here
我是说我需要这样的东西:profileNameLbl.text = PFUser.current().profileName
但这当然不会编译。
最佳答案
在swift 4.2中使用:
PFUser.current()?[“profileName”] as? String
关于ios - 从解析列到标签中获取值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52228192/