在聊天应用程序中,为了跟踪每个聊天的最后一条消息和参与聊天的每个用户的未读消息,当tableView单元出队时,我在该单元上附加了一个.childChanged
侦听器。当侦听器被解雇后,我将为相应的聊天更新每一行的chat label.text。
我什么时候应该删除这些听众,或者在我的情况下更新单元格中的聊天的最佳实践是什么?
程序的流程是什么?
1.下载当前用户
2.下载当前的用户chatIDs
3.为每个chatID下载聊天
4.用聊天填充tableView
5.在每个单元格中观察childChanged在
chats / chat.chatUID / currentUserUID / .observe(.childChanged)
6.如果“ unreadMessagesCount”已更改,请在单元格上
class ChatTableViewCell: UITableViewCell {
@IBOutlet weak var lastMessageLabel: UILabel!
var chat: Chat! {
didSet{
self.updateUI()
}
}
func updateUI() {
self.chat.observeChildChanged(chat: self.chat, currentUserUID:user.userUID) { (lastMessage, unreadMessagesCount) in
if !lastMessage.isEmpty{
self.lastMessageLabel.text = lastMessage
}
if unreadMessagesCount > 0 {
self.lastMessageLabel.font = UIFont.boldSystemFont(ofSize: 16.0)
self.chatUnreadMessagesCount.text = "\(unreadMessagesCount)"
} else {
self.lastMessageLabel.font = UIFont.systemFont(ofSize: 15.0)
self.chatUnreadMessagesCount.text = ""
}
}
}
}
class MessagesViewController: UITableViewController {
override func viewDidLoad() {
//observe ~/users/uid
DDatabaseRReference.users(uid: uid).reference().observeSingleEvent(of: .value, with: { (snapshot) in
guard snapshot.exists() else {return}
if let userDict = snapshot.value as? [String : Any] {
self.currentUser = UserModel(dictionary: userDict)
self.userWasDownloaded = true //this will trigger the setter and start downloading chatId's of current user
}
})
}
var userWasDownloaded: Bool {
get {
return true
}
set {
self.fetchChatsIdsOf(currentUser: self.currentUser)
self.tableView.reloadData()
}
}
func fetchChatsIdsOf(currentUser: UserModel) {
//get chatIds of currentUser from ~/users/currentUser.userUID/chatIds
DDatabaseRReference.users(uid: currentUser.userUID).reference().child("chatIds").observe(.childAdded, with: { (snapshot) in
let chatUID = snapshot.key
if !self.chatIdsDownloaded.contains(chatUID) {
self.chatIdsDownloaded.append(chatUID)
}
})
}
//after chatIdsDownloaded is set,
//download the new chat for the last chat appended to chatIdsDownloaded array
var chatIdsDownloaded = [String]() {
didSet {
guard let chatID = chatIdsDownloaded.last else {return}
self.downloadNewChat(chatID: chatID)
}
}
func downloadNewChat(chatID: String) {
DDatabaseRReference.chats.reference().child(chatID).observeSingleEvent(of: .value, with: { (snapshot) in
......
self.currentUserChats.insert(chatChecked, at: 0)
}
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ChatTableViewCell", for: indexPath) as! ChatTableViewCell
cell.chat = currentUserChats[indexPath.row]
return cell
}
}
chats // <- all chats in the app for all users in the app
-LOMVtcjOEOu2p1apMKV
chatUID: "-LOMVtcjOEOu2p1apMKV"
isGroupChat: true
lastMessage: "Katherine Gregory has joined the group"
lastUpdate: 1539761870.2237191
+users
IN4pgCS5NqQZZLpdmoz1KeDiFqj2
fcmToken: ""
firstName: "Alex"
userUID: "IN4pgCS5NqQZZLpdmoz1KeDiFqj2"
unreadMessagesCount: 5
users // <- all users in the app
IN4pgCS5NqQZZLpdmoz1KeDiFqj2
+chatIds
-LOMVtcjOEOu2p1apMKV: true
- name: ""
- email: ""
...etc
答案 0 :(得分:0)
您可以检查是否为单元格添加了2个或更多观察者。
在此处添加断点或print():
self.chat.observeChildChanged(chat: self.chat, currentUserUID: user.userUID) { (lastMessage, unreadMessagesCount) in {
//breakpoint or print("observeChildChanged")
...
}
请重复使用您的单元格。
发送新消息。
如果您有2条或更多的消息,则意味着您没有只设置一个观察者。
也许这种方法并不完美,但可以为您提供帮助(在添加新观察者之前先删除旧观察者):
var chat: Chat! {
didSet {
self.removeOldObserver()
self.updateUI()
}
}
func removeOldObserver() {
...
}
答案 1 :(得分:0)
正如杰伊(Jay)所建议的,我在新下载的每个聊天中都附加了source ~/.bash_profile
观察者。
但是,如果我转到firebase控制台并更新.childChanged
路径上的子项的值,则不会总是触发childChanged观察器。有时可以用,有时不能用。
我在所有行上都使用断点,并且在数据库中更改值时都没有命中它们。
示例:ref
“亚历克斯”
更改为:名称:“ John”
更新
这个答案是正确的,我忘了删除以前的实现,其中分离了name:
prepareForReuse()