Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我制作了一个使用Parse的小应用程序,我有一个注册 viewController,注册后我有一个usersVCviewController。
usersVC
在 Parse 仪表板中,我添加了一个名为 的列profileName,我希望在注册后将该列中的值获取到某个标签。
profileName
这里解析仪表板:
在此处输入图像描述
我的意思是我需要类似的东西:profileNameLbl.text = PFUser.current().profileName
profileNameLbl.text = PFUser.current().profileName
但当然这不会编译。
在 swift 4.2 上使用:
PFUser.current()?[“profileName”] as? String