iPhone
[objc] 스크롤은 되고, copy,paste 팝업은 안나오는 TextView
tenn
2013. 5. 17. 16:15
1. UITextView를 상속받은 클래스에 이하의 메소드를 만듦.
대충 클래스 이름을 TextView1..
- (BOOL)canBecomeFirstResponder {
return NO;
}
2. TextView를 쓰는 곳에서
UITextView *tv = [[TextView1 alloc] init...