我正在构建一个包含powerpoint演示文稿的iPad应用程序。当用户从应用程序中选择一个演示文稿时,它将在PowerPoint iPad应用程序中打开。 我尝试使用UIDocumentInteractionController打开存储在我的应用程序的文档目录中的演示文稿,但它以只读模式打开。是否可以在编辑模式下打开演示文稿?
我使用下面的Swift代码来实现功能,它始终以只读模式打开。
let newUrlStr = "file:///private/var/mobile/Containers/Shared/AppGroup/FCE54337-6614-4872-AB7F-945073E7F674/File%20Provider%20Storage/Presentation3.pptx"
let newDocUrl = URL(string: newUrlStr)
documentController = UIDocumentInteractionController(url: newDocUrl)
let frame = CGRect(x: 0, y: 0, width: 20, height: 20)
documentController!.presentOpenInMenu(from: frame, in: self.view, animated: true)
任何帮助表示赞赏。提前谢谢。