iOS,Objective -C如何从iPad隐藏/删除UIDocumentInteractionController栏/共享按钮?

时间:2019-04-03 04:53:26

标签: ios objective-c powerpoint uidocumentinteraction qlpreviewcontroller

我正在通过UIDocumentInteractionController(目标-C)显示一个PowerPoint文件。客户需要从导航栏中删除栏/共享按钮。我尝试并遵循了很多在Google上找到的说明。但是,在我看来,所有这些都不起作用。 我尝试过的:

  1. Hide status bar when using UIDocumentInteractionController?
  2. UIDocumentInteractionController remove Actions Menu
  3. Can I hide the Action button on the UIDocumentInteractionController view? enter image description here

我的代码:

 if ([documentType isEqualToString:DOC_TYPE_PPTX]) {


                self.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:documentUrl];

                // Configure Document Interaction Controller
                [self.documentInteractionController setDelegate:self];

                // Preview PDF
                [self.documentInteractionController presentPreviewAnimated:YES];


            }

如果无法隐藏/删除此共享按钮,请建议我使用另一个自定义库/框架来显示目标文件中没有共享按钮的Powerpoint文件-C。在此先感谢。任何建议都会很棒。

0 个答案:

没有答案