So I have a text block and I add to it. But it soon starts to slow down when I’m scrolling after the text builds up. This is on iOS latest on an iPhone 11 Pro Max. It’s basically a few hundred lines of text. Any ideas?
When dealing with large blocks of text that are not static, it is best to split those up into multiple text objects.
An example of a large static text object would be a license agreement or game credits. Large dynamic blocks of text could a chat system where it would be best to split each line of text into single text objects where you manage a pool of text objects to display the visible text. I made a post about this in the past which you should be able to find via search on the forum here.
Hey thanks, I forgot I posted this but this will help me out.