Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Autolayout a UIScrollView to fit content including subviews and grouped tables

I am trying to present information about an object grouped into sections. It may be long, so each section uses a view to visually separate the areas and it is all in a scroll view.

The first subview has a text field that does resize to fit the text, and its parent view also resizes to fit the text field.

The second subview has a grouped table to display data. I want all of the data in the table to appear and there should be no table scrolling.

The third subview has more information but its contents are an empty view for the purposes of this demo. In the real app I may add an arbitrary number of custom subviews.

What I'm finding is that the first subview resizes appropriately but I cannot find the combination of layout constraints that will make the second subview size to fit the table and move the third view down.

What do I need to do to make the scroll view fit its contents, when the sub view's contents may resize? The table view is filling the available space in the parent view, but the parent view is not expanding to fit. I note that the third view has a top space constraint to the superview, not just to the view above it. That's visible in the screenshot below

layout and simulator

like image 417
James Avatar asked Jan 14 '23 14:01

James


1 Answers

I found a solution that like most solutions, seems obvious in retrospect.

I think my problem is that the interior tableview had no fixed height and since it also a scrollview, was trying to fit whatever was assigned instead of expanding to fit the interior content. I was able to solve my problem by adding a fixed height constraint in IB and hooking it up to an outlet in my view controller. Then in the controller:

-(void) viewWillLayoutSubviews{
    [self.tableView layoutIfNeeded];
    self.tableViewHeightConstraint.constant = self.tableView.contentSize.height;
}

Derp. In summary the table view needed a height so I set one.

Here's a screenshot, note the fixed height constraint on the right hand side: properly scrolling view

like image 128
James Avatar answered Jan 19 '23 11:01

James