views:

564

answers:

1

Hi,

I have a view with tab bar at the bottom. This view is pushed on a navigation controller, so there is also a navigation bar at the top. Unto this view, I would like to show a table view, which I create from its own nib. When I add this view as a subview, it overlaps the tab bar.

Is there a way to make this subview automatically resize to the free space in between the top and bottom bar?

If not, what is the 'right' way of adjusting its size to fit?

-Vegar

+1  A: 

In the interface builder make sure that you've set the navigation bar and tab bar spacers up. It should be the first list of options on the first tab in the Interface builder Properties view. This will make your view mimic the amount of space it has when loaded in the view.

From there you can also choose the option to clip the subview. The interface builder also allows you to set resize options for the view. If the subview your adding wasn't created in the interface builder you'll have to specify those options manually.

Lastly make sure that your appending the subview to the correct view, and not the tab bar controller or navigation controller.

Best bet is to make sure the subview your addings dimensions are appropriate for the amount of space you have by creating a frame using CGRect.

Chris
Turning on simulated interface elements seems to solve my issue. Thanks!
Vegar