My program has a UITextView and I enter and scroll the text manually:
[myTextView scrollRangeToVisible:NSMakeRange([myTextView.text length]-1, 1)];
The text will disappear after a certain amount of input (if text length > 200) However, when I output the content via NSLog, the text content is still valid and being updated every time I enter the text; it just won't show on myTextView
Any suggestions?