I have an UIView and I add a editable UITextView to it,
UIView
UITextView
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(5, 5, 2
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);