사용하려는 클래스의 .m파일 끝에 붙이면 됨.
@implementation UITextView (DisableCopyPaste)
- (BOOL)canBecomeFirstResponder
{
return NO;
}
@end
http://stackoverflow.com/questions/1426731/how-disable-copy-cut-select-select-all-in-uitextview
사용하려는 클래스의 .m파일 끝에 붙이면 됨.
@implementation UITextView (DisableCopyPaste)
- (BOOL)canBecomeFirstResponder
{
return NO;
}
@end
http://stackoverflow.com/questions/1426731/how-disable-copy-cut-select-select-all-in-uitextview