iPhone

[objc] UITextView, 복사/붙여넣기 팝업이 안나오는 UITextView 만들기

tenn 2013. 7. 17. 12:08


사용하려는 클래스의 .m파일 끝에 붙이면 됨.


@implementation UITextView (DisableCopyPaste)

- (BOOL)canBecomeFirstResponder
{
    return NO;
}

@end



http://stackoverflow.com/questions/1426731/how-disable-copy-cut-select-select-all-in-uitextview

저작자표시 (새창열림)