从解析列中获取值到标签中
Grab value from parse column into label
我制作了一个使用 Parse 的小应用程序,我有一个注册 viewController,注册后我有一个 usersVC
viewController。
在 Parse 仪表板中,我添加了一个名为 profileName
的列,我希望在注册后将该列中的值抓取到某个标签中。
此处解析仪表盘:
enter image description here
我的意思是我需要这样的东西:profileNameLbl.text = PFUser.current().profileName
当然这不会编译。
在swift 4.2 使用:
PFUser.current()?[“profileName”] as? String
我制作了一个使用 Parse 的小应用程序,我有一个注册 viewController,注册后我有一个 usersVC
viewController。
在 Parse 仪表板中,我添加了一个名为 profileName
的列,我希望在注册后将该列中的值抓取到某个标签中。
此处解析仪表盘:
enter image description here
我的意思是我需要这样的东西:profileNameLbl.text = PFUser.current().profileName
当然这不会编译。
在swift 4.2 使用:
PFUser.current()?[“profileName”] as? String