開啟 URL 指定的資源
要求代理開啟由 URL 指定的資源,並提供啟動選項的字典。
用法示例:
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
return SomeManager.shared.handle(
url,
sourceApplication: options[.sourceApplication] as? String,
annotation: options[.annotation]
)
}