I have Tableview for showing food orders placed by clients. which contains Horizontal UIStackview. In UIStackView
In UIStackview
Add these 2 lines before the end of cellForRowAt in main & inner tableViews
cell.layoutSubviews()
cell.layoutIfNeeded()
return cell
Also you may try add layoutSubviews method in main cell subclass and do this
self.tblOrderMaster.layoutIfNeeded()
and in viewDidLayoutSubviews of controller of the main tableView and do this
self.tblOrders.layoutIfNeeded()