iOS 调用其他方式打开文件(UIDocumentInteractionController)更多分享

首先遵循代理方法:

UIDocumentInteractionControllerDelegate   

然后声明一个属性 :

@property(nonatomic,strong)UIDocumentInteractionController *documentController;

然后在你用到的地方初始化:

 _documentController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:“unzipPath”]];

        _documentController.delegate = self;

        [_documentController presentOpenInMenuFromRect:self.view.bounds inView:self.view animated:YES];

“unzipPath”。是你要分享的参数 也就是你要分享的东西

第一用这个 接下来会继续探索 UIDocumentInteractionController 的使用 慢慢学习

你可能感兴趣的:(iOS 调用其他方式打开文件(UIDocumentInteractionController)更多分享)