我有一个分组的 UITableView 和一些部分(带有标题)。我想在第一部分添加页脚,所以我使用
- (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;
}
}
我有一个问题:
- 页脚端和下一节的标题之间的距离相当大。我不知道为什么。
有什么建议么?