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 the length of the text is> 200) However, when I output the content via NSLog, the text content is still valid and updated every time I enter the text; it just won't display on myTextView
Any suggestions?
source share