I am not sure why, but the view controller does not want to be in grouped style.
- There is no xib file for this view controller.
- When init, it is done by initWithStyle:UITableViewGrouped
- debugging the init, it receives the Grouped style
- tried overwriting self = [super initWithStyle:UITableViewGrouped];
(id)initWithStyle:(UITableViewStyle)style { self = [super initWithStyle:UITableViewStyleGrouped]; if (self) { //Checking on this line self.tableView.style = UITableViewPlain!!! (lldb) p style (UITableViewStyle) $1 = UITableViewStyleGrouped (lldb) p [[self tableView] style] (UITableViewStyle) $2 = UITableViewStylePlain
As you can see, the style says Grouped, I overwritten it with Grouped. Then the next line is Plain?!
Any help is much appreciated. My alternative is to attach a xib to it and hopefully it'll set it that way :S
Thank you in advance
Edit: This is where i call an instance.
AddContactViewController *addContact = [[AddContactViewController alloc]initWithStyle:UITableViewStyleGrouped];
[addContact setCustomerID:customerID];
[addContact setDelegate:self];
[self.navigationController pushViewController:addContact animated:YES];
The initWithStyle above is the AddContactViewController.m and the (lldb) bits are my debug print out.
Hope that clears it a bit better. I can not disclose too much code I'm afraid.
AddContactViewControllerreally a tableview controller? From the naming, it's not...? – SAE Jan 31 at 13:12UIViewControllerinstead, and create anUITableViewwith[[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStyleGrouped]and add it as a subview? – howanghk Jan 31 at 13:58