目前,在为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的方法。