textview 키패드 backspace 버튼 및 다음문장(return) 버튼 이벤트 알아내기 제목이 조금 어렵나요UITextView를 터치하고 올라오는 키패드에서 backspace 버튼과 다음문장(영어로 return) 버튼 이벤트값을 알아내는 방법 입니다. 네 아래 소스를 보면 됩니다. - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {//backspace버튼 클릭시 if (range.length == 1 && [text length] == 0) {//이벤트처리 } //다음문장 버튼 클릭시 else if ([text hasSuffix:@"\n"]){//..