vote up 0 vote down star

Is it possible to resize the UITableView on the RootController of a nav based app? When RootViewController.xib is opened in IB, there isn't a view. Just the UITableView. Clicking the inspector and then the little yellow ruler, frame height is grayed out. I'm adding a toolbar programmatically to the RootViewController:

[toolbar setFrame:rectArea];

That works fine but the bottom cell in the tableview is partially hidden because the tableview doesn't know about the toolbar.

flag

48% accept rate

2 Answers

vote up 1 vote down check

Yes, but you need to have a ViewController (not a UITableViewController) as the root controller for the nav, and wrap the actual UITableView in the UIViewControllers view.

You can still have the UIViewController conform to the UITableViewDelgate and Datasource protocols, and use all the same methods you have now in your UITableViewController.

P.S. you'll get more responses if you use the plain "iphone" tag.

link|flag
I thought it would probably have to go that way. Thanks on the tag tip. – 4thSpace Mar 18 at 15:22
vote up 0 vote down

You could also just set the Content and Scroller inset of the tableview

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.