i found this link : initialize UITableViewController with [super initWithStyle:UITableViewStyleGrouped]
but i don’t understand the way to initialize the tableView as “grouped” inside the controller class?
self = [super initWithStyle:UITableViewStyleGrouped];
Could you help me?
Thanks a lot
Paul
The easiest way is to change the TableView in Interface Builder to Grouped style in the Attribute Inspector. To do this in code you would need to change the way the UITableViewControler is created. You would not do it through the xib, but in code in the AppDelegate. You could also change the code to a UIViewController and implement the table view delegates and change things yourself.