因此,我已经在使用Swift的Xcode中创建的应用程序中添加了通知功能。
我已经从Firebase控制台中运行了测试通知,并且可以正确接收给定主题的那些通知。
我在应用程序中具有聊天功能,当要在存储消息的Firebase集合中添加新消息时,我想向用户发送关于“聊天”主题的通知。具体来说,我想在此处创建(如果可能)通知:
private func save(_ message: Message) {
reference?.addDocument(data: message.representation) { error in
if let _ = error {
return
}
self.messagesCollectionView.scrollToBottom()
//set up and send the notification to alert of a new message
}
}
我今天已经做了很多研究,除了快速之外,我还发现了许多其他语言的东西,而且它们也不能完全解释我想要的功能。
如果任何人有任何好的教程,或者知道在功能上实现此功能的最佳方法,那就太好了!
谢谢您的帮助!