美文网首页
iOS-现APP中的文档如何用第三方APP(WPS Office

iOS-现APP中的文档如何用第三方APP(WPS Office

作者: ChenL | 来源:发表于2020-12-16 14:05 被阅读0次

1、首先实现代理UIDocumentInteractionControllerDelegate

2、定义属性
@property (nonatomic, strong) UIDocumentInteractionController *documentInteractionController;

3、在需要用第三方查看文档的地方如下代码

必须是本地文件

//str是要打开的文档路径
 NSURL *url = [NSURL fileURLWithPath:str];
    _documentInteractionController = [UIDocumentInteractionController
                                      interactionControllerWithURL:url];
    [_documentInteractionController setDelegate:self];
    
    [_documentInteractionController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];
image.png

相关文章

网友评论

      本文标题:iOS-现APP中的文档如何用第三方APP(WPS Office

      本文链接:https://www.haomeiwen.com/subject/buingktx.html