我正在使用 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;
}