Swift 3 在应用程序关闭时显示来自 appdelget 的视图

Swift 3 present view from appdelget when application was off

当用户打开推送通知时,我会通过此代码显示来自 appdelget 的视图

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

    application.applicationIconBadgeNumber = 0; // Clear badge when app is launched
    if UserDefaults.standard.bool(forKey: "PushOFF") == false
    {
        registerForRemoteNotification()
    }
    else
    {
        UIApplication.shared.unregisterForRemoteNotifications()
    }
    return true
}
func registerForRemoteNotification()
{
    if #available(iOS 10.0, *)
    {
        let center  = UNUserNotificationCenter.current()
        center.delegate = self
        center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in
            if error == nil{
                UIApplication.shared.registerForRemoteNotifications()
            }
        }
    }
    else
    {
        UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.sound, .alert, .badge], categories: nil))
        UIApplication.shared.registerForRemoteNotifications()
    }
}

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    var token = ""
    for i in 0..<deviceToken.count {
        token = token + String(format: "%02.2hhx", arguments: [deviceToken[i]])
    }
    print("DEVICE TOKEN = \(token)")
}

func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error)
{
    print("Registration failed! error=\(error)")
}
//Called when a notification is delivered to a foreground app.
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void)
{
    print("foreground User Info = ",notification.request.content.userInfo)
    completionHandler([.alert, .badge, .sound])
    print("foreground app",notification.request.content.userInfo)
}

//Called to let your app know which action was selected by the user for a given notification.
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void)
{

    completionHandler()
    let result = response.notification.request.content.userInfo as! Dictionary<String, AnyObject>
    print("action User Info = ",result)

    let app = result["aps"] as! Dictionary<String, AnyObject>
    let title = app["alert"] as! String
    let id = result["id"]?.integerValue
    print("alert=",title,"id=",id!)
    if id != 0
    {
        if UserDefaults.standard.bool(forKey: "login")
        {
            UserDefaults.standard.set(title, forKey: "notificationTitle")
            UserDefaults.standard.set(id, forKey: "notificationId")
            UserDefaults.standard.synchronize()
            if let controller = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "PostVC") as? UINavigationController
            {
                    var currentController = window?.rootViewController
                    while let presentedController = currentController?.presentedViewController
                    {
                        currentController = presentedController
                    }
                    currentController?.present(controller, animated: true, completion: nil)
            }
        }
    }
}

如果应用程序正常工作,代码 运行 完美,但是当应用程序关闭时,它首先显示 "PostVC" 视图,然后在 "PostVC" 视图之上显示根视图!!所以你看不到 "PostVC" 视图。

怎么了?但我不会使用 window?.makeKeyAndVisible()

好的!我给你一个主意。每当触发通知并且用户点击通知时,将调用 UNNotificationDefaultActionIdentifier 。试试这个:

 func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {

    switch response.actionIdentifier {

    case UNNotificationDefaultActionIdentifier:

        DispatchQueue.main.async(execute: {
            openViewController()
        })

    default:
        break
    }

    completionHandler()
}

这将是你的职能:

func openViewController() {
    let controller = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "PostVC") as? UINavigationController
    self.window?.rootViewController = controller
    self.window = UIWindow.init(frame: UIScreen.main.bounds)
    self.window?.makeKeyAndVisible()
}

但正如我上面建议的那样,改为打开 childViewController

 func openViewController() {

    let storyboard = UIStoryboard.init(name: "Main", bundle: nil)
    let rootViewController = storyboard.instantiateViewController(withIdentifier: "YourRootViewControllerIdentifier") as! UINavigationController
    let childViewController = storyboard.instantiateViewController(withIdentifier: "YourChildViewControllerIdentifier") as! YourCustomChildViewController

    rootViewController.pushViewController(childViewController, animated: true)

    self.window?.rootViewController = rootViewController
    self.window = UIWindow.init(frame: UIScreen.main.bounds)
    self.window?.makeKeyAndVisible()
}

我还没有测试过。让我知道它是否有效!祝你好运