我需要“ options:(NSDictionary *)options”,但这是swift4.1中的“ options:(NSDictionary *)options”。 我该怎么办?
- (BOOL)应用程序:(UIApplication *)应用程序openURL:(NSURL *)url选项:(NSDictionary *)选项 NS_AVAILABLE_IOS(9_0); //没有等值。通知。如果返回 出于某种原因应用程序无法打开
答案 0 :(得分:0)
目前尚不清楚您的问题是什么,但我会尝试猜测您正在寻找open(_:options:completionHandler:)
方法。用法示例:
let url = URL(string: "https://google.com")!
UIApplication.shared.open(url) // options are equal to [:] and completionHandler is nil by default so they can be omitted
这里是documentation。