I have a lot of UITextView
s in my screen and i want to add a new custom UIMenuItem
for one of them.
It is possible to add a custom UIMenuItem
just for a specific UITextView
?
I use below code but i have my custom button for all UITextView
s
UIMenuItem *menuItem = [[UIMenuItem alloc] initWithTitle:@"Read" action:@selector(readButtonAction)];
[[UIMenuController sharedMenuController] setMenuItems:[NSArray arrayWithObject:menuItem]];
Thanks