how to remove defaults menu items like copy ,paste and select from UIMenuController
Asked
Active
Viewed 732 times
0
-
1Depends on the circumstances. Where are you? UITextField? UITableView? – matt Jul 02 '14 at 13:10
-
I want to disable these menu's in UIWebView textfields. i e for html textfields – user3608500 Jul 03 '14 at 08:01
-
See discussion at http://stackoverflow.com/questions/6614465/how-do-you-really-remove-copy-from-uimenucontroller?rq=1 – matt Jul 03 '14 at 14:04
1 Answers
0
Return NO from canPerformAction:...
. (Exactly which canPerformAction:
this is, depends on where you are; your question gives no information on that.)

matt
- 515,959
- 87
- 875
- 1,141
-
-
@Thanks for the reply.I tried this but still those default menu's remains there.I want to do this on the textfields on UIWebView – user3608500 Jul 03 '14 at 08:10