I am returning to Pythonista programming. I find that I often need to display subsequent lines of text results in a text control. I find that if I just use a UI textview that, due to strings being immutable, if I use something like:
V[“textview”].text += “New line of textn”
The textview always displays the text from the top. I then have to scroll manually to see the last appended line.
How can I do this?
I am struggling to work my way through the methods of View and Scroller to sort this out. Help would be appreciated. Steve, England