Inside ScrollView there are two Label (multi-lane), and below it is a TableView (in which the number of rows may also be different).
The height of both Label and TableView is not specified. The row height at the TableView is fixed and equal to 50.0f.
All outlets have constants set apart from each other - in particular from above and below, including the View container in which they are all located.
As a result: both Labels are scrolled, and the TableView is obtained with a height of 0. It can only be seen if the table height is set explicitly. The number of rows of the TableView is determined correctly.
How can you programmatically set the height of the TableView itself so that it can be seen ("row height" x "number of cells")?
Or you can do something else?

