I’m trying to dynamically populate a scrolling UITable (1 column) with text downloaded from a server. My approach is to create text labels dynamically, set their width to apply line-wrapping, then add them to the table. Depending on when this is done, the text label's position seems to jump around the place, making it difficult to know what the table offset into the scrollview should be. I don’t know how wide the scrollview is going to be until it is sized (OnEnable), so I can’t hardcode an offset.
Is there a recommended way to do this?