swift2 FIRDatabase UISearchBar子项的字符串

ovfsdjhp  于 2022-11-06  发布在  Swift
关注(0)|答案(1)|浏览(126)

搜索栏的新功能。

工作中:

[字符串]“firstname”在搜索时返回正确的值。如果我有3个“firstname”以“G”开头的人(例如),表将重新加载3个单元格。

问题:

尽管table重新加载了“firstname”的正确单元格值,但是users.append(user)返回nil,并且错误的名字被加载到tableview上。

协助:

如何在搜索完成后将正确的名称加载到tableview?
下面是我的代码:

func searchBar(_ searchBar: UISearchBar, textDidChange textSearched: String)->Void {

    FIRDatabase.database().reference().child("users").queryOrdered(byChild: "firstname").queryStarting(atValue: textSearched).queryEnding(atValue: textSearched+"\u{f8ff}").observe(.value, with: { snapshot in
                var users = [User]()
                let user = User()
                    print(user)
                for _ in snapshot.children.allObjects as! [FIRDataSnapshot] {
                    if let dictionary = snapshot.value as? [String: AnyObject]{
                        user.lastname = dictionary["firstname"] as? String
                        users.append(user)
                    }
                }
        self.users = users
        let search = searchCell()
        search.firstName.text = user.firstname
        self.attempReloadOfTable()
    }, withCancel: nil)
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! searchCell
    var user = User()
    user = users[indexPath.row]

    if let id = user.id{
        let ref = FIRDatabase.database().reference().child("users").child(id)
        ref.observe(.value, with: { (snapshot) in
            cell.lastName.text = user.lastname
            cell.firstName.text = user.firstname
        })
    }
    return cell
}
vbkedwbf

vbkedwbf1#

您的问题是单元格在与块中的用户数据绑定之前被返回。因为FIRBase结果查询块中的代码将在return cell执行之后执行。
我把你的代码编辑成这样:

func searchBar(_ searchBar: UISearchBar, textDidChange textSearched: String)->Void {

    FIRDatabase.database().reference().child("users").queryOrdered(byChild: "firstname").queryStarting(atValue: textSearched).queryEnding(atValue: textSearched+"\u{f8ff}").observe(.value, with: { snapshot in
        var users = [User]()
        for _ in snapshot.children.allObjects as! [FIRDataSnapshot] {
            if let dictionary = snapshot.value as? [String: AnyObject] {
                let user = User()
                user.lastname = dictionary["firstname"] as? String
                print(user)
                users.append(user)
            }
        }
        self.users = users
        let search = searchCell()
        search.firstName.text = user.firstname
        self.attempReloadOfTable()
    }, withCancel: nil)
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! searchCell
    let user = users[indexPath.row]

    cell.lastName.text = user.lastname
    cell.firstName.text = user.firstname

    return cell
}

希望对你有用。

相关问题