0
我有一個子類UITextView
,我想顯示一個自定義UIMenuItem
當用戶按下並持有UITextView
。對於我的生活,我無法讓我的自定義項目顯示。下面是我在做什麼在viewDidLoad
:UIMenuController不顯示自定義UIMenuItem在子類UITextView
UIMenuItem *customMenuItem1 = [[UIMenuItem alloc] initWithTitle:@"Keywords" action:@selector(insertKeywords)];
[[UIMenuController sharedMenuController] setMenuItems:[NSArray arrayWithObject:customMenuItem1]];
按住我的subclases UITextView
我仍然只看到「選擇」和「全選」。
我還需要做什麼來顯示我的自定義項目?