0
當應用程序在通知中包含URL的通知中使用Nsnotification時,無法打開特定控制器。當應用程序首次啓動時使用帶URL的nsnotification時,特定控制器未打開
當應用程序在後臺它工作正常。
當應用程序在通知中包含URL的通知中使用Nsnotification時,無法打開特定控制器。當應用程序首次啓動時使用帶URL的nsnotification時,特定控制器未打開
當應用程序在後臺它工作正常。
當應用程序在後臺通知被 didReceiveRemoteNotification
第一次啓動處理,但是你需要解析的任何通知的launchOptions在didFinishLaunchingWithOptions 喜歡的東西:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
if let remoteNotification = launchOptions?[UIApplicationLaunchOptionsKey.remoteNotification] as? NSDictionary {
print("we got a notification \(remoteNotification)")
//your logic here (launch controller etc)
}
}