I have a tab bar iPhone application with 4 tabs. In the Interface Builder I set view controllers for each tab.
I want to change style from plain to grouped for one UITableViewController.
I replace init method something like this:
- (id)init
{
self = [super initWithStyle:UITableViewStyleGrouped];
if (self != nil) {
// Initialisation code
}
return self;
}
but no luck.
There is no code where I can call initWithStyle method.
Please advice how to change style for my UITableViewController in tab bar.