我正在使用搜索栏搜索用户名数据库,并相应地更新tableview的User()数据库。搜索更新阵列很好,但是当我的tableview尝试将自己的标签更改为User()的第一个名称时,我的应用程序崩溃了,因为它声称firstName是nil。但我知道这不是零。在尝试更新标签之前,我打印对象的属性并打印正确的用户名。我不知道我做错了什么。这是代码......
class AddFriendsVC: UIViewController, UITableViewDelegate, UITableViewDataSource, UISearchBarDelegate {
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var searchBar: UISearchBar!
var profiles = [User]()
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
searchBar.delegate = self
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return profiles.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as? FriendCell {
let friend = profiles[indexPath.row]
print(friend.firstName) //PRINTS THE USERNAME...
cell.nameLabel.text = friend.firstName //CRASHES HERE. firstName is of type "String!"
return cell
}
return tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
}
func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
DataService.dataService.REF_USERNAMES.queryOrderedByKey().queryStarting(atValue: searchText).queryEnding(atValue: searchText+"\u{f8ff}").observeSingleEvent(of: .value, with: { (snapshot) in
if snapshot.exists() {
var results = [User]()
if let snapshots = snapshot.children.allObjects as? [FIRDataSnapshot] {
for snap in snapshots {
print(snap.key)
let result = User(first: "\(snap.key)", last: "s", username: "s", activeTrip: "s")
results.append(result)
if snap == snapshots.last {
self.profiles = results
print(self.profiles[0].firstName) //PRINTS CORRECT USERNAME
self.tableView.reloadData()
}
}
}
}
})
}
}
每当我打印数据时,用户名就在那里......为什么这不起作用?
答案 0 :(得分:1)
问题不在于friend.firstName
,而在于cell.nameLabel
。 IBOutlet
是隐式解包的选项,在这种情况下,UILabel!
,意味着如果它们没有正确连接,它们将nil
并像你看到的那样崩溃。确保该属性已连接到该类,并且应该修复它。