如何在UIDocumentInteractionController上触发'open in ...'按钮?

时间:2018-06-19 10:32:02

标签: ios swift

我创建了一个具有UIDocumentInteractionController的viewController。

我在UIDocumentInteractionController上预览了一个pdf文件。

我想在自动完成预览后触发UIDocumentInteractionController上的'open in'按钮。

enter image description here

1 个答案:

答案 0 :(得分:1)

我使用UIActivityViewController解决了它。

let vc = UIActivityViewController(activityItems: [fileURL], applicationActivities: nil)
vc.popoverPresentationController?.sourceView = self.view
vc.popoverPresentationController?.delegate = self
self.present(vc, animated: true, completion: nil)