Im using Xcode 5.1.1 developing for ios7. As there is new text entering the UITextView, I would like it if the text went up, leaving room for the user to see the new text. I
The RIGHT answer is to set:
_consoleView.layoutManager.allowsNonContiguousLayout = NO;
In ViewDidLoad
Then:
_consoleView.text = text; [_consoleView scrollRangeToVisible:NSMakeRange(_consoleView.text.length - 1, 1)];