I\'m using the new customization abilities of the UIMenuController to add things other than \"Copy\" to the menu for cut&paste into a webview.
What I do is getting t
we have the same problem actually when i tried to develop an application in iPad. But what i did is i disabled the popup menu items in
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
Using
if ( [UIMenuController sharedMenuController] ) { [UIMenuController sharedMenuController].menuVisible = NO; } return NO;
Then i used a UIPopoverController.
Regards, ZaldzBugz