未调用方法“scene(_:openURLContexts:)”

问题描述 投票:0回答:5

在 info.plist 文件中我成功配置了

URL Identifier
URL Scheme
。我还可以使用自定义 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 为 nil。

但是,如果我的应用程序处于后台模式并且我点击 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()
    }

谁能告诉我为什么上面的方法第一次没有调用?

iphone ios13 swift5 custom-scheme-url
5个回答
35
投票

也许这会对您的情况有所帮助。


func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
       
    let urlinfo = connectionOptions.urlContexts
    let url = urlinfo.first?.url as! NSURL
  
}

func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext*h>) {
       
    let url = URLContexts.first!.url as NSURL

}

更新于2021年6月17日

如果您想使用 Deeplink 和 Universal Link,这就是我的方法。

    //Deeplink or Universial Link Open when app is start.
    func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
                
        // Universial link Open
        if let userActivity = connectionOptions.userActivities.first,
           userActivity.activityType == NSUserActivityTypeBrowsingWeb,
           let urlinfo = userActivity.webpageURL{
            
            print ("Universial Link Open at SceneDelegate on App Start ::::::: \(urlinfo)")
            
        }
        
        //deeplink Open
        if connectionOptions.urlContexts.first?.url != nil {
          let urlinfo = connectionOptions.urlContexts.first?.url
            
            print ("Deeplink Open at SceneDelegate on App Start ::::::: \(String(describing: urlinfo))")

          
        }
        
        guard let _ = (scene as? UIWindowScene) else { return }
    }

    // Universial link Open when app is onPause
    func scene(_ scene: UIScene, continue userActivity: NSUserActivity) {
        
        if userActivity.activityType == NSUserActivityTypeBrowsingWeb,
            let urlinfo = userActivity.webpageURL{
            
            print ("Universial Link Open at SceneDelegate on App Pause  ::::::: \(urlinfo)")
            
        }
    }
    
    // Deeplink Open when app in onPause
    func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
        
        let urlinfo = URLContexts.first?.url
        print ("Deeplink Open on SceneDelegate at App Pause :::::::: \(String(describing: urlinfo))")

    }

谢谢


11
投票

我认为Apple 文档解释得最清楚,即

如果您的应用程序已选择进入场景,并且您的应用程序未运行,则系统会在启动后将 URL 传递给

scene(_:willConnectTo:options:)
委托方法,并在您的应用程序在内存中运行或暂停时打开 URL 时传递给
scene(_:openURLContexts:)

因此,当您的应用程序在运行或仅在内存中暂停时打开 URL 时,它只会调用您的

scene(_:openURLContexts:)
(即问题中带有此签名的:
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>)
)。

相反,当应用程序第一次启动时,它会调用

scene(_:willConnectTo:options:)


8
投票

我遇到了同样的问题,并且仅在应用程序打开时才调用方法

scene(_ scene:, continue userActivity:)

当我检查传递给方法

connectionOptions
scene(_ scene:, willConnectTo session, options connectionOptions:)
时,它有一个具有预期 URL 的用户活动。所以,我最终手动调用了第一个方法:

func scene(_ scene: UIScene,
           willConnectTo session: UISceneSession,
           options connectionOptions: UIScene.ConnectionOptions) {

    if let userActivity = connectionOptions.userActivities.first {
        self.scene(scene, continue: userActivity)
    }
}

0
投票

我的情况是 SceneDelegate 中提供的 openURL 额外函数在从 Facebook 身份验证返回后没有被调用。

解决方案正在使用

.onOpenURL { (url) in
                ApplicationDelegate.shared.application(
                    UIApplication.shared,
                    open: url,
                    sourceApplication: nil,
                    annotation: [UIApplication.OpenURLOptionsKey.annotation]
                )
            }

在我的额外应用程序委托中调用该函数,然后该函数可以正常工作。


0
投票

当您的应用程序包含 多个

UIWindowSceneDelegate
实现时,重要提示:

您必须在

each openURLContexts 实现中实现 
UIWindowSceneDelegate
,因为此委托方法将定向到当前活动场景。

© www.soinside.com 2019 - 2024. All rights reserved.