UITextView automatic scroll down

前端 未结 9 1703
遇见更好的自我
遇见更好的自我 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:26

    To scroll to the end of the buffer I tried

    [textView scrollRangeToVisible:NSMakeRange([textView.text length]-1, 1)];
    

    But nothing happened. Instead this works

    textView.selectedRange = NSMakeRange(textView.text.length - 1, 0);
    

提交回复
热议问题