如何从indexPath.row中提取单个字符串?我正在用Firebase中的用户填充表格视图,需要抓取并将“ uid”传递给另一个视图控制器。
我目前的尝试...
if let indexPath = tableView.indexPathForSelectedRow {
let user = usersArray[indexPath.row]?.value(forKey: "uid")
let controller = segue.destination as? ExploreBusinessProfileSwitchView
controller?.otherUser = user
}