I have a UITextView that has a lot of content. I have a button that allows the UITextView to automatically scroll + 10 pixels in an NSTimer loop:
scrollPoin
You could just make it move relative to where it is:
scrollPoint = textView.contentOffset; scrollPoint.y= scrollPoint.y+10; [textView setContentOffset:scrollPoint animated:YES];