I have a TextView in my xib file.
After I assign text for it, it doesn’t show the text till I double click it, and actually change the selection of the text:
Before double click:
After double click:

After changing selection size:

Do you have any idea, how to show text from the beginning?
Thanks
We found the solution. This situation happens, when you try to update the txt before the view is visible.
We override the function viewDidAppear, and did this code:
If the view is animated, or inside animated controlView, we have to call the viewDidAppear after animation finished.