URL Identifier
在我配置并URL Scheme
成功的 info.plist 文件中。我还可以使用自定义 URL 打开应用程序。问题是当应用程序第一次启动时,方法
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>)
不会被调用。
我有一些基于上述方法的依赖功能。因此,当应用程序第一次启动时,我无法在我的应用程序中看到任何内容。
我还在方法中添加了代码
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
guard let _ = (scene as? UIWindowScene) else { return }
let url = connectionOptions.urlContexts.first?.url
}
但我在这里得到的网址为零。
但是,如果我的应用程序处于后台模式并且我点击了 URL,那么上面的方法调用成功并且相关功能可以正常工作。以下是我scene(_:openURLContexts:)
在sceneDelegate
.
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>){
let url = URLContexts.first?.url
let urlString: String = url!.absoluteString
if let urlComponents = URLComponents(string: urlString),let queryItems = urlComponents.queryItems {
queryParams = queryItems
} else {
print("invalid url")
}
guard let windowScene = (scene as? UIWindowScene) else { return }
self.window = UIWindow(windowScene: windowScene)
//self.window = UIWindow(frame: UIScreen.main.bounds)
let storyboard = UIStoryboard(name: "Main", bundle: nil)
guard let rootVC = storyboard.instantiateViewController(identifier: "LocationViewIdentifier") as? UIViewController else {
print("ViewController not found")
return
}
let rootNC = UINavigationController(rootViewController: rootVC)
self.window?.rootViewController = rootNC
self.window?.makeKeyAndVisible()
}
谁能告诉我为什么上面的方法第一次没有调用?