I used UITextView in that Copy, Cut, Select, Select All functionality shows by default when i touches continuously. but in my project the text view property is only read only. I not require this functionality. Please tell me how to disable this function.
feedback
|
|
Subclass UITextView and overwrite canBecomeFirstResponder:
Note, that this only applies for non-editable UITextViews! Haven't tested it on editable ones... | |||||||||
feedback
|
|
The easiest way to disable pasteboard operations is to create a subclass of
Also see UIResponder | ||||
|
feedback
|
|
If you don't need UITextView to scroll, then the simplest solution that doesn't involve sub-classing is to simply disable user interaction for the text view:
| |||||
feedback
|
|
If you want to disable cut/copy/paste on all
It saves a subclassing... :-) | |||
feedback
|
|
The easiest way is to create a subclass of UITextView that overrides the canPerformAction:withSender:
| ||||
|
feedback
|
|
This is the easiest way to disable the entire Select/Copy/Paste Menu in a UITextView
| ||||
|
feedback
|
|
This was the best working solution for me:
| |||
|
feedback
|
|
I have done it. On my I placed a
and it worked for me. Thank you. | ||||
|
feedback
|