ios - Disable UITextview selection text and copy/paste Menu -


this question has answer here:

i want disable copy/paste menu , i'm using html tag in uitextview in multiple hyperlinks , want disable menu.

my texview image

enter image description here

just try create subclass of uitextview overrides canperformaction:withsender: method

- (bool)canperformaction:(sel)action withsender:(id)sender {     if (action == @selector(paste:))         return no;     return [super canperformaction:action withsender:sender]; } 

Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -