Instead of the plain type of table I want a Grouped one in the RootViewController.Anyone knows how to do this?
views:
283answers:
2
+2
A:
First You create xib design for RootViewController and in attributes inspector change tableview style to grouped .Its work well
dragon
2010-06-21 05:09:06
+1
A:
Add the following to viewDidLoad of RootViewController.m
[self.tableView initWithFrame:self.tableView.frame style:UITableViewStyleGrouped];
this will change the tableview style.
palaniraja
2010-08-31 09:51:31