Scrolling to the end of a textview (NSTextView->General)NSRange range; range = NSMakeRange ([[textView string] length], 0); [textView scrollRangeToVisible: range];I've heard thatscrollRangeToVisibleis O(N) for the length of the text. So be on the lookout if you have lots of text involved.