我发现此链接使用info.plist中的文档类型
How do I get my app to show up in the "Open In..." popover list in the iPad?
但是如果我想在文档类型中添加任何类型的文件,那么我应该将“jpg,png,pdf,mov,xml,php,doc,ppt .....”添加到info.plist中。
有没有一种简单的方法可以让myapp在另一个应用程序中打开任何类型的文件?
答案 0 :(得分:0)
通常我们会在动作表中编写Open,然后单击我们将调用文档交互控制器来查找可以打开文档的适用应用程序
UIDocumentInteractionController *docInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:@"file_full_path.pdf"]];
[docInteractionController presentOptionsMenuFromRect:self.view.frame
inView:self.view
animated:YES];
fileURLWithPath: - 包含完整路径的文件名