UITextView in iOS7 clips the last line of text string

后端 未结 11 1285
轻奢々
轻奢々 2020-12-04 09:30

UITextView in iOS7 has been really weird. As you type and are entering the last line of your UITextView, the scroll view doesn\'t scroll to the bottom like it should and it

11条回答
  •  庸人自扰
    2020-12-04 09:56

    Try implementing the -textViewDidChangeSelection: delegate method from the UITextViewDelegate like this:

    -(void)textViewDidChangeSelection:(UITextView *)textView {
        [textView scrollRangeToVisible:textView.selectedRange];
    }
    

提交回复
热议问题