1. UITextView를 상속받은 클래스에 이하의 메소드를 만듦.
대충 클래스 이름을 TextView1..
- (BOOL)canBecomeFirstResponder {
return NO;
}
2. TextView를 쓰는 곳에서
UITextView *tv = [[TextView1 alloc] init...
1. UITextView를 상속받은 클래스에 이하의 메소드를 만듦.
대충 클래스 이름을 TextView1..
- (BOOL)canBecomeFirstResponder {
return NO;
}
2. TextView를 쓰는 곳에서
UITextView *tv = [[TextView1 alloc] init...