I created an iPad application with a UITableViewController in a UISplitViewController (and everything works :) Since I would like the table to use UITableViewStyleGrouped, I added:
- (id)init { self = [super initWithStyle:UITableViewStyleGrouped]; if (self != nil) {
into the root view controller and included it in .h, but it is never called. So, two questions, can I configure UITableViewStyleGrouped for a table in a UISplitViewController? And if so, how?
objective-c uitableview ipad
tg2
source share