0
我對編程和開發應用程序時頗爲陌生,該應用程序會在我的商店打開時通知用戶。我正在使用Firebase來存儲數據,我正在尋找使用本地通知而不是推送。使用Firebase的本地通知
我有我的應用程序委託設置根據一些在線來源發送通知,但我不知道如何調用它的功能。我在Xcode中使用了swift 4。
import Firebase
var refNotificationValue = DatabaseReference!
@IBAction func openButtonClicked(_ sender: UIButton) {
// Alert Controller confirming actions
self.shouldSendNotification()
}
// DidLoad()
refNotificationValue = database.database().reference().child("Notifications").child("enabled") // set to yes
// EndLoad()
func shouldSendNotification() {
refNotificationValue?.observeSingleEvent(of: .value, with: { (snapshot) in
let dict = snapshot.value as! [String: Any]
let status = dict["enabled"] as! String
if status == "yes" {
setToOpen()
sendNotification()
} else {
setToOpen()
}
})
}
func sendNotification() {
????????
}
非常感謝!
謝謝!我已經制定了你在第二種方式列出的背景獲取 –
很棒!我很樂意幫忙=) –
達斯汀,有沒有辦法在這裏私下給你發消息?我真的可以使用一些幫助,並在這個問題上停留了一個月。謝謝你 –