Above is my image in that there was menu for cut,copy etc. So I added following code:
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[[UIMenuController sharedMenuController] setMenuVisible:NO animated:NO];
[self resignFirstResponder];
}];
return [super canPerformAction:action withSender:sender];
}
So I removed that pop up by adding above code but the blue color effect is still there when I double click on that link which is I embeded in textview
How to remove this blue color selection on textview? It appears when I double click on it. I do not want to appear that.