Iphone sdk : Where to put code for a grouped table.
Posted
by Dave
on Stack Overflow
See other posts from Stack Overflow
or by Dave
Published on 2010-03-27T18:39:09Z
Indexed on
2010/03/27
18:43 UTC
Read the original article
Hit count: 147
I have a root view controller with no nib file,
I tried adding this at cellForRowAtIndexPath as that passes in a UITableView as tableView.
So I put :
tableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStyleGrouped];
It ran with no error but it didnt seem to change anything.
© Stack Overflow or respective owner