I have a grouped UITableView with some sections (with an header title). I want to add a footer to the first section, so I use
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
switch (section) {
case 0:
return @"some lines of text...........bla bla bla bla bla etc etc");
break;
default:
return nil;
break;
}
}
I have one problem:
Any suggestions?
You can change the footer height programmatically or using interface builder.