UITextView automatic scroll down

前端 未结 9 1698
遇见更好的自我
遇见更好的自我 2020-12-14 15:33

I have an UIView and I add a editable UITextView to it,

UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(5, 5, 2         


        
9条回答
  •  隐瞒了意图╮
    2020-12-14 16:14

    I think you'll have to do

    [textView scrollRangeToVisible:[textView selectedRange]];
    

    in textDidChange.

提交回复
热议问题