我们在及时聊天App中经常能遇到他人发送过来的pdf、doc、xls等文件,如果App不支持打开这些文件,那我们怎么去选择三方的应用去预览这些文件呢?
这里使用到的就是系统的UIDocumentInteractionController,点击“使用第三方应用打开”按钮事件如下:
_documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
_documentInteractionController.delegate = self;
[_documentInteractionController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];
【注】这里本地文件路径需考虑可能存在的中文无法打开的情况,可使用URLEncode解决。