So I\'m trying to build something rather intricate - potentially more than what the picture below shows. Anyway..
I\'m trying to have a UITableView
inside o
You should use UIStackView
instead UITableView
in cells, because as i understood, inner tableViews will not scroll or dequeue. That will be misusage of UITableView
.
If you have already cells or you insist, you may set height constraint of inner tableview at layoutSubviews
method of inner tableview's parent view by taking tableviews content size.