3

我正在使用 UIDocumentInteractionController 的 presentPreviewAnimated 方法来预览文档。它工作正常。但我希望在预览模式下禁用操作按钮。我有以下两个委托方法来返回 NO。但这两种方法根本没有被调用。其他委托方法工作正常。有什么建议吗?

-(BOOL)documentInteractionController:(UIDocumentInteractionController *)controller canPerformAction:(SEL)action {
NSLog(@"canPerformAction");
return NO;
}

-(BOOL)documentInteractionController:(UIDocumentInteractionController *)controller performAction:(SEL)action {
NSLog(@"performAction");
return NO;
}
4

1 回答 1

1

我终于切换到使用 QLPreviewController 类。您可以在哪里对其进行子类化并使操作按钮消失。(在这个SO的 rbrown 的回答的帮助下。

于 2012-02-17T03:08:04.540 回答