プッシュ通知をタップした際に、特定の画面を表示したいと思っています。
しかし、下記のようにコードを設定しても画面遷移せず、フォアグラウンドの場合は反応なし、バッググラウンドの場合は以前開いていた画面が表示されるのみ、アプリを閉じていた場合は最初の画面が表示される状態です。
コードのどこが間違っているのでしょうか。
自分なりに調べたのですがわからず、アドバイスいただけると嬉しいです。
Swift
1@main 2class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate { 3 4 var window: UIWindow? 5 6 func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 7 GMSServices.provideAPIKey("省略") 8 FirebaseApp.configure() 9 10 UNUserNotificationCenter.current().delegate = self 11 let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound] 12 UNUserNotificationCenter.current().requestAuthorization( 13 options: authOptions, 14 completionHandler: {_, _ in }) 15 application.registerForRemoteNotifications() 16 17 return true 18 } 19 20 // MARK: UISceneSession Lifecycle 21 22 func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { 23 24 return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 25 } 26 27 func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) { 28 29 } 30 31 func userNotificationCenter(_ center: UNUserNotificationCenter, 32 willPresent notification: UNNotification, 33 withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { 34 35 if #available(iOS 14.0, *) { 36 completionHandler([[.badge, .banner]]) 37 } else { 38 completionHandler([[.badge, .alert]]) 39 } 40 41 } 42 43 func userNotificationCenter(_ center: UNUserNotificationCenter, 44 didReceive response: UNNotificationResponse, 45 withCompletionHandler completionHandler: @escaping () -> Void) { 46 47 self.window = UIWindow(frame: UIScreen.main.bounds) 48 let storyboard = UIStoryboard(name: "Main", bundle: nil) 49 let initialViewController = storyboard.instantiateViewController(withIdentifier: "View3") 50 initialViewController.modalPresentationStyle = .overFullScreen 51 self.window?.rootViewController = initialViewController 52 self.window?.makeKeyAndVisible() 53 54 completionHandler() 55 56 } 57 58} 59 60
現状
CapabilitiesにPush Notificationsを追加済み
通知自体は届くが、バナーや通知センターをタップしても画面遷移しない
ログを見る限り、View3のViewDidloadは動いている様子だが、実機テスト上には表示されていない
構造
TabController
→ NavigationController View1
→ NavigationController View2 → View3(モーダル)
可能であればView3を閉じたときにView2に戻るように実装したいのですが、View3を表示することすらできていない状態です。
参考にしたサイト
https://qiita.com/tomu28/items/4bb327a8f80c042e41a1
https://teratail.com/questions/171629
回答1件
あなたの回答
tips
プレビュー