How to hide/disable keyboard ,if the textview editing is enabled.
I only want to that user can only be able to select the text and can\'t be allowed for entering tex
This will make the keyboard disappear:
[[[UIApplication sharedApplication] keyWindow] endEditing:YES];
This what you want to do?