我正在使用 FirebaseUI-IOS 和 FirebaseTableViewDataSource 绑定到我的 UITableView。对于我的实现,UITableView 应该以“待定”状态显示邀请以连接用户,类似于 LinkedIn。存储在 Firebase 中的邀请数据有一个状态键,可以是“待定”、“已接受”或“已拒绝”。在用户接受/拒绝邀请后,我正在努力让 UITableView 更新并仅显示“待处理”行。当前发生的情况是 UITableView 单元格被更新(名称标签更改为其默认文本),但仍显示单元格。似乎 UITableView 绑定到用户“已接收”节点下的所有行,而不是在状态!=“待处理”时响应。
我在 Firebase 中的数据结构如下:
我在 ViewDidLoad() 中使用以下代码来初始化 FirebaseTableViewDataSource 并填充单元格:
//Initialise a Firebase reference to the authorised user's 'received' invitations data
self.ref = Firebase(url: "\(kFBInvitationsUsersRef)/\(authData.uid)/received")
//Query the location for invitations where the status is pending only
self.ref.queryOrderedByChild("status").queryStartingAtValue(InvitationStatus.pending.rawValue).queryEndingAtValue(InvitationStatus.pending.rawValue).observeEventType(.ChildChanged , withBlock: {(snapshot) in
} )
//Assign the tableview datasource to a new FirebaseTableViewDataSource instance using the Firebase ref created above
self.dataSource = FirebaseTableViewDataSource(query: self.ref, modelClass:nil, prototypeReuseIdentifier: "invitationCell", view: self.tableView)
//Call the populateCellWithBlock method and configure the cell
self.dataSource.populateCellWithBlock { (cell: UITableViewCell, obj: NSObject) -> Void in
let cell = cell as! InvitationTableViewCell
let snap = obj as! FDataSnapshot
if let status = snap.value["status"] as? String where status == InvitationStatus.pending.rawValue {
let userRef = Firebase(url: "\(kFBUsersPublicRef)/\(snap.key)")
userRef.observeSingleEventOfType(.Value, withBlock: {snapshot in
let user = User(key: snapshot.key, displayName: snapshot.value["displayName"] as! String, givenName: snapshot.value["givenName"] as! String, familyName: snapshot.value["familyName"] as! String)
cell.user = user
cell.delegate = self
})
}
}
self.tableView.dataSource = self.dataSource
self.tableView.delegate = self
}
谁能帮助诊断我在这里做错了什么?我的方法正确吗?
感谢您提供任何帮助!