好的,我正在使用带有页眉和页脚的 uicollectionview 构建消息扩展应用程序。经过几次尝试,我了解到为什么我无法使用正常语法从消息控制器打开一个 url - 因为它应该使用它的扩展:
let url: URL = URL(string: "http://www.google.com")!
self.extensionContext?.open(url, completionHandler: { (success: Bool) in
print("hi")
})
这个编译但在 MessageViewController 文件中不起作用。我不知道为什么,但是在我的
class FooterCollectionReusableView: UICollectionReusableView {
如何从我的消息扩展中的页脚打开一个 url?这可能吗?