从UIDocumentInteractionController隐藏共享选项

时间:2015-09-29 06:59:17

标签: ios objective-c uidocumentinteraction

在我的应用程序中,我需要向用户显示一些pdf文件。我正在使用UIDocumentInteractionController来实现此目的:

.h
// Document interaction controller
@property (nonatomic, strong) UIDocumentInteractionController *docViewer;

.m
_docViewer            = [[UIDocumentInteractionController alloc] init];
_docViewer.delegate   = self;
_docViewer.URL        = [NSURL fileURLWithPath:@"my file path"]];
[_docViewer presentPreviewAnimated:YES];

一切正常。但问题是我在文档交互控制器中获得了一个共享选项。

Doc Controller

我不想在文档交互控制器中显示共享选项。那可能吗 ?我检查了类参考文档,但没有找到隐藏该选项的任何属性。

1 个答案:

答案 0 :(得分:0)

可能需要使用自定义PDF阅读器VC。 这个更新了很多 https://github.com/vfr/Reader