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 have something that works but the animation that shows the new text is awkward. Its almost as if it goes from the very top of the text and quickly goes to the bottom every time its called.
CGPoint p = [textview contentOffset];
[textview setContentOffset:p animated:NO];
[textview scrollRangeToVisible:NSMakeRange([textview.text length] - 1,0)];
This code is getting called every time new text is entered. I would like it to be as smooth as the default iPhone messenger where it just slides up casually.
The RIGHT answer is to set:
In ViewDidLoad
Then:
(Answered by a question edit. Converted to a community wiki answer. See Question with no answers, but issue solved in the comments (or extended in chat) )
The OP wrote: