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

minify - Minimizing css files -

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -