I'm struggling with wired kind of problem. I have UITableView
with one cell. This cell is only holding containerView with childViewController
(second tableView
). My problem is that, first tableView(parent) must have UITableViewAutomaticDimension
row height but it doesn't work (It dosen't know correct size of that cell with second tableView
).
How to get correct size of second tableView
) ?
Second tableView (inside Cell
) have scrollingEnabled turned off (tableView.scrollEnabled = false
), first tableView must have correct size of second tableView in order to provide correct scrolling experience.