如何访问 URL 在 iOs 中通过 Activity Sheet 共享

How do I access The URL shared over an Activity Sheet in iOs

我正在尝试通过 activity sheet 通过 Safari 将 PDF 导入我的应用程序。我的应用程序在 activity sheet 上弹出,但我无法访问 URL。 我尝试在我的应用程序委托中使用 application(_:open:options:) 函数,但它不起作用 url处理函数

func application(_ app: UIApplication,
   open url: URL,
   options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool{

    print(url)
    return true
}

我在这里找到了解决方案

func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
print(URLContexts.debugDescription)

}