I try to have a grouped styled tableview in the right view of my splitview (DetailViewController). The DetailViewController has a UITableViewController without NIB file. I already have implemented
- (id)initWithStyle:(UITableViewStyle)style {
if ((self = [super initWithStyle:UITableViewStyleGrouped])) {
}
return self;
}
With no effect. Maybe I have to override -(id)init{}?
Any help would be nice. regards Christian