我需要禁用 UISearchBar 中显示的上下文菜单
目前我尝试子分类 UISearchBar 并覆盖 canPerformAction:withSender: 如下,但没有成功。做同样事情的最佳方法是什么?
头文件:
#import <UIKit/UIKit.h>
@interface CustomSearchBar : UISearchBar
@end
和实施
#import "CustomSearchBar.h"
@implementation CustomSearchBar
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
return NO;
}
@end