UITextView in iOS7 has been really weird. As you type and are entering the last line of your UITextView, the scroll view doesn\'t scroll to the bottom like it should and it
Try implementing the -textViewDidChangeSelection: delegate method from the UITextViewDelegate like this:
-textViewDidChangeSelection:
-(void)textViewDidChangeSelection:(UITextView *)textView { [textView scrollRangeToVisible:textView.selectedRange]; }