从具有属性的URL打开swift应用并加载特定的VC

时间:2019-04-24 16:11:57

标签: swift properties url-scheme

目前,在为iOS应用程序工作时,我偶然发现了以下问题:用户应该能够使用特定的URL方案(demoapp://)打开应用程序,并将url作为属性({{ 1}})。

我用以下代码实现了这一点:

demoapp://google.de

但是,此后,我想显示一个特定的ViewController(@UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var host: String! func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool { host = url.host print(host) return true } [...] ),其链接填充在文本字段AddUrlViewController中。

我找不到一种显示与主要VC不同的VC的方法。

0 个答案:

没有答案