2
UIDocumentInteractionControllerのpresentPreviewAnimatedメソッドを使用してドキュメントをプレビューしています。それはうまく動作します。しかし、私はプレビューモード中にアクションボタンを無効にしたい。私はNOを返すために以下の2つの委任されたメソッドを持っています。しかし、これらの2つの方法は全く呼び出されませんでした。他の委任されたメソッドは正常に動作します。なにか提案を?UIDocumentInteractionControllerのpresentPreviewAnimatedでアクション項目を無効にする
-(BOOL)documentInteractionController:(UIDocumentInteractionController *)controller canPerformAction:(SEL)action {
NSLog(@"canPerformAction");
return NO;
}
と
-(BOOL)documentInteractionController:(UIDocumentInteractionController *)controller performAction:(SEL)action {
NSLog(@"performAction");
return NO;
}