I have several custom UIMenuItems that do things with a selection in a UIWebView. After the action has been run on that selection I want to hide the s
UIMenuItems
UIWebView
Just disable and re-enable the User Interaction:
myWebView.userInteractionEnabled = NO; myWebView.userInteractionEnabled = YES;