我有一个子类UITextView
,UIMenuItem
当用户按下并按住UITextView
. 对于我的生活,我无法让我的自定义项目显示。这是我正在做的事情viewDidLoad
:
UIMenuItem *customMenuItem1 = [[UIMenuItem alloc] initWithTitle:@"Keywords" action:@selector(insertKeywords)];
[[UIMenuController sharedMenuController] setMenuItems:[NSArray arrayWithObject:customMenuItem1]];
按住我的子类,UITextView
我仍然只能看到“选择”和“全选”。
我还需要做什么才能显示我的自定义项目?