私はSwiftUI言語を使用しています
通知をクリックしてホーム画面にリダイレクトするのですが、リダイレクトで詳細画面が必要です。
これは私のセットルートコードです..SwiftUI言語を使用して詳細画面をここに設定する方法
if(application.applicationState == .inactive)
{
// let storyboard = UIStoryboard(name: "Main", bundle: nil)
let contentView = ContentView1()
if let window = UIApplication.shared.keyWindow {
self.window = window
}
self.window?.rootViewController = UIHostingController(rootView: contentView)
self.window?.makeKeyAndVisible()
print("user tapped the notification bar when the app is in background")
}