Reputation: 151
I would like to create a navigation based application without the Table View stuff... when I select "navigation based application" at the project start, I get a Root view that inherits from UITableViewController... I wish to inherit from UINavigationController and delete all the table methods in the implementation file... question is...
how do I change the XIB in interface builder to give a simple UIView rather than UITableView?
please and thank you
Upvotes: 1
Views: 1528
Reputation: 1757
First Delete the UITableView from .xib then add the view in .xib and delete the UITableViewController from .h class and edit it with UIViewController.
Upvotes: 0
Reputation: 5266
It is simple, but some people forget a few steps.
Upvotes: 3
Reputation: 12106
In the Objects list, select the TableView, press Delete.
Then drag in whatever type of view you want, like a NavBar controller.
Upvotes: 4