Swift Showing last sent message in chat using firebase
问题 I am trying to show my last sent message on my home screen of the chat messenger, from storyboard it looks like : and the code I used are: func getAllMsg() { self.users = [] let fromId = Auth.auth().currentUser!.uid let ref = Database.database().reference().child("privateMessages").child(fromId) ref.observeSingleEvent(of: .value) { (snapshot) in for snap in snapshot.children.allObjects as! [DataSnapshot] { // retrieving receiver's ID let chatUserID = snap.key let ref2 = Database.database()