Subclass UITextView and overwrite canBeforeFirstResponder to return always NO:
@interface MyUITextView : UITextViewNow you have completely hidden and disabled copy, paste and select for UITextView!
@end
@implementation MyUITextView
- (BOOL)canBecomeFirstResponder
{
return NO;
}
@end
No comments:
Post a Comment