Hi All,
I have a populated multi section table view, I've added the following method to set the headers, its being called (when I put break points in), but the sections aren't showing any headers. Is there a property I need to set to enable header content?
Code:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
if (section==0) {
return @"Info";
} else if (section==1) {
return @"Release";
}
return Nil;
}