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

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
Post a Comment