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