Hi,
I am developing an app in Xcode 4.3.2. I have a small question that is I want to enable scroll view property of UITextView and Disable the (copy,selectAll,define) properties of UITextView at a time in my code.
Is it possible?
Hi,
I am developing an app in Xcode 4.3.2. I have a small question that is I want to enable scroll view property of UITextView and Disable the (copy,selectAll,define) properties of UITextView at a time in my code.
Is it possible?
Subclass UITextView and overwrite canBecomeFirstResponder:
- (BOOL)canBecomeFirstResponder {
return NO;
}