Push-уведомление IOS RootViewController для закрытого приложения не имеет значения, как представить контроллер rootview, а затем требуется контроллер Deeplink - PullRequest
0 голосов
/ 07 июля 2019

Ниже приведен мой код, который он получил

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    var userNotification : UserNotification?
     if userInfo is [String : Any] {
        userNotification = createNSaveNotification(userInfo)
    }
   DeeplinkHandler.handleNotification(userNotification: userNotification)


}

@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter,  willPresent notification: UNNotification, withCompletionHandler   completionHandler: @escaping (_ options:   UNNotificationPresentationOptions) -> Void) {

    //Called when a notification is delivered to a foreground app.

    let userInfo = notification.request.content.userInfo as? NSDictionary
    print("\(userInfo)")
    var userNotification : UserNotification?
    if userInfo is [String : Any] {
        userNotification = createNSaveNotification(userInfo as! [AnyHashable : Any])
    }
    DeeplinkHandler.handleNotification(userNotification: userNotification)

}

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

    // Called to let your app know which action was selected by the user for a given notification.
    let userInfo = response.notification.request.content.userInfo as? NSDictionary
    print("\(userInfo)")
    var userNotification : UserNotification?
    if userInfo is [String : Any] {
        userNotification = createNSaveNotification(userInfo as! [AnyHashable : Any])
    }
    DeeplinkHandler.handleNotification(userNotification: userNotification)
}

Ниже приведен код в didFinishLaunchingWithOptions

var notification: [AnyHashable: Any]? = (launchOptions?[UIApplication.LaunchOptionsKey.remoteNotification] as? [AnyHashable: Any])
if let notification = notification {
    print("app received notification from remote\(notification)")
    var userNotification : UserNotification?
    if notification is [String : Any] {
        userNotification = createNSaveNotification(notification)
        DeeplinkHandler.handleNotification(userNotification: userNotification)
    }
}
else {
    print("app did not receive notification")
}

Ниже приведен код для обработки глубоких ссылок

class func handleNotification(userNotification :  UserNotification?){
let appDelegate = UIApplication.shared.delegate as! AppDelegate
var navigationVC = UINavigationController()

if let tabBarVC = appDelegate.window?.rootViewController as? UITabBarController {
    if let navVC = tabBarVC.viewControllers?[tabBarVC.selectedIndex] as? UINavigationController {
        navigationVC = navVC
    }
    else {
        tabBarVC.selectedIndex = 0
        navigationVC = tabBarVC.viewControllers?[0] as! UINavigationController
    }

}
  // let navigationVC = appDelegate.window?.rootViewController as! UINavigationController

switch userNotification?.type ?? "" {
case DeeplinkHandler.NOTIF_TYPE_WEBVIEW:
    let appWebView = AppStrings.appStoryBoard.instantiateViewController(withIdentifier: "webPageViewControllerID") as! WebPageViewController
    appWebView.url = userNotification?.url ?? ""
    navigationVC.pushViewController(appWebView, animated: true)
//case DeeplinkHandler.NOTIF_TYPE_PAGE_ID:
//case DeeplinkHandler.NOTIF_TYPE_FLIGHT_STATUS:
default:
    let appWebView = AppStrings.appStoryBoard.instantiateViewController(withIdentifier: "notificationViewControllerID") as! NotificationViewController
    //appWebView.url = userNotification?.url ?? ""
    navigationVC.pushViewController(appWebView, animated: true)

}
}

Теперь этоработает нормально в обычном случае, но вылетает, когда приложение закрывается и пользователь щелкает уведомление, это потому, что RootViewController в этом случае не равен нулю, как сначала нажать rootviewcontroller, а затем контроллер связанных ссылок, когда щелкают уведомления для закрытого приложения

Обновлено: такжеобнаружил, что он работает нормально, если я прокомментирую ниже код, он не падает, но он также не перенаправляет по глубокой ссылке.

        if let tabBarVC = appDelegate.window?.rootViewController as? UITabBarController {
        if let navVC = tabBarVC.viewControllers?[tabBarVC.selectedIndex] as? UINavigationController {
            navigationVC = navVC
        }
        else {
            tabBarVC.selectedIndex = 0
            navigationVC = tabBarVC.viewControllers?[0] as! UINavigationController
        }

    }

Это может быть связано с тем, что я устанавливаю UITabBar viewcontroller в viewDidLoad UITabBarController

...