いくつかのセクション (ヘッダー タイトル付き) を持つグループ化された 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;
}
}
問題が 1 つあります。
- フッターの終わりと次のセクションのタイトルの間の距離はかなり大きいです。どうしてか分かりません。
助言がありますか?