作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Firebase 通知。当 applicationState 处于后台时,它工作正常。但是,当应用程序未运行/终止时,未调用 func getPushNotiData(_ notification: NSNotification)
在appDelegate文件中实现NotificationCenter来处理dashView中的通知
func application(_ application: UIApplication, didReceiveRemoteNotification
userInfo: [AnyHashable : Any]) {
NotificationCenter.default.post(name: NSNotification.Name(rawValue:
"getPushNotificationData"), object: nil, userInfo: userInfo)
}
如果应用程序未运行/终止在 didFinishLaunchingWithOptions 委托(delegate)方法中实现 NotificationCenter
if (launchOptions != nil)
{
let userInfo = launchOptions![.remoteNotification] as? [AnyHashable: Any]
if userInfo != nil {
NotificationCenter.default.post(name: NSNotification.Name(rawValue: "getPushNotificationData"), object: nil, userInfo: userInfo)
}
}
在 dashView 中处理 NotificationCenter
override func viewDidAppear(_ animated: Bool) {
NotificationCenter.default.addObserver(self, selector: #selector(self.getPushNotiData(_:)), name: NSNotification.Name(rawValue: "getPushNotificationData"), object: nil)
}
@objc func getPushNotiData(_ notification: NSNotification){
if let url = notification.userInfo!["url"] as? String {
let destination = storyboard?.instantiateViewController(withIdentifier: "NotificationDlsViewController") as! NotificationDlsViewController
destination.notiUrl = url
self.navigationController?.pushViewController(destination, animated: true)
}
}
最佳答案
如果应用程序未运行(已终止状态),您无法执行任何方法或代码,只有当用户单击推送通知时,您才能在 didFinishLaunchingWithOptions
launchingOptions 中接收它的对象并处理它....
关于ios - 应用程序未运行/应用程序终止时如何处理推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49272354/
我是一名优秀的程序员,十分优秀!