在我的应用程序中,我需要向用户显示一些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];
一切正常。但问题是我在文档交互控制器中获得了一个共享选项。
我不想在文档交互控制器中显示共享选项。那可能吗 ?我检查了类参考文档,但没有找到隐藏该选项的任何属性。