17

在 iOS 8 beta 2 上,应该可以使用应用程序扩展中的 openUrl,如发行说明中所述:

在此处输入图像描述

但是,当我尝试使用此 API(在 Xcode 6 beta 2 上)时,出现以下错误:

在此处输入图像描述

Beta 2 是否真的解决了这个问题?

4

2 回答 2

45

您可以使用以下代码:

[self.extensionContext openURL:url completionHandler:^(BOOL success) {
        NSLog(@"fun=%s after completion. success=%d", __func__, success);
    }];

API 文档: openURL:completionHandler:

你也可以参考这个问题: openURL not work in Action Extension

于 2014-06-23T02:53:41.567 回答
5

接受的解决方案仅适用Today extensions于 Swift 3.1(在 iOS10 中测试)中适用于其他扩展类型的工作解决方案:

您需要创建自己的 URL Scheme,然后将此函数添加到您的 ViewController 并调用它openURL("myScheme://myIdentifier")

//  Function must be named exactly like this so a selector can be found by the compiler!
//  Anyway - it's another selector in another instance that would be "performed" instead.
func openURL(_ url: URL) -> Bool {
    var responder: UIResponder? = self
    while responder != nil {
        if let application = responder as? UIApplication {
            return application.perform(#selector(openURL(_:)), with: url) != nil
        }
        responder = responder?.next
    }
    return false
}
于 2017-06-12T12:22:16.243 回答