Firebase将用户检索到tableView

时间:2017-08-01 10:09:17

标签: ios uitableview firebase swift3 firebase-realtime-database

我在向TableView检索用户数据时遇到问题,我的代码正常工作,我看到用户在单元格中有他们的名字,但是问题是当其中一个用户对他们的个人资料进行了任何更改时,他的单元格将重复< /强>

firebase结构:

enter image description here

ViewDidLoad和Cell Rows:

override func viewDidLoad() {
    super.viewDidLoad()

    ref = FIRDatabase.database().reference()

    USER_REF.keepSynced(true)
    friends_REF.keepSynced(true)


    showUsersObserver {}


}


func 

tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        return self.friendList.count

    }

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let Cell:TableViewCellx = tableView.dequeueReusableCell(withIdentifier: "mainCell") as! TableViewCellx



        Cell.name.text = self.friendList[indexPath.row].displayname
return(Cell)
}

这是为了获取朋友子结构中的用户密钥。

 func showUsersObserver(_ update: @escaping () -> Void) {
    CURRENT_USER_FRIENDS_REF.observe(.value, with: { (snapshot) in
        self.friendList.removeAll()


        let keys = snapshot.children
        while let rest = keys.nextObject() as? FIRDataSnapshot {



            self.getUser(rest.key, completion: { (user) in
                self.friendList.append(user)

                print(self.friendList.count) // This increase each time when user changing his name! or any changes hits his profile.

                DispatchQueue.main.async {
                    self.tableview.reloadData()
                }

                update()
            })

        }



        // If there are no children, run completion here instead
        if snapshot.childrenCount == 0 {
            update()
        }
    })
}

这是为了获取他们的个人资料数据:

func getUser(_ userID: String, completion: @escaping (User) -> Void) {
    USER_REF.child(userID).observe(.value, with: { (snapshot) in

        guard let dictionary = snapshot.value as? [String: Any] else {
            return
        }



        let id = dictionary["uid"] as? String
        let email = dictionary["email"] as? String
        let DisplayName = dictionary["displayname"] as? String




        completion(User(userEmail: email!, userID: id!, userDisplayName: DisplayName!))



    })
}

和朋友列表:

class User {

var uid: String!
var displayname: String!
var email: String!


init(userEmail: String, userID: String, userDisplayName: String) {

    self.email = userEmail
    self.uid = userID
    self.displayname = userDisplayName

    }
}

当我在朋友小孩中添加\删除键时,我看到我的tableView中的更新效果很好,但如果其中一个键改变了他的名字,它将显示他的旧\新单元格,因此他的名字重复。

1 个答案:

答案 0 :(得分:0)

保留与用户名相关联的tableView中每行的唯一标识符。

更新用户后,从用户列表中获取数据,然后更新该特定项目。

您可以将用户密钥用作唯一标识符

由于