When I enter new text into my UITextView, it automatically scrolls to the top - not sure what they changed in the new iOS system.
I faced the same problem, I solved it by writing the following line in textViewDidChange:
textViewDidChange:
[textView scrollRangeToVisible:[textView selectedRange]];
This might help too.