UITableView分组:如何更改两个部分之间的偏移?

时间:2011-11-24 14:20:30

标签: cocoa-touch uitableview

我有一个UITableView分组。我在第一部分和第二部分插入了UISegmentedButton。如何更改两个部分之间的偏移?我可以设置部分的自定义高度。但我正在寻找更优雅的解决方案。

enter image description here

2 个答案:

答案 0 :(得分:1)

我在FontType中使用了这个:

#define kHeaderHeight 40.0f

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
CGRect frame = CGRectMake(0, 0, tableView.frame.size.width, kHeaderHeight);
return [[[UIView alloc] initWithFrame:frame] autorelease];
}

答案 1 :(得分:0)

我不确定你是如何插入分段按钮的,但我知道创建更多分离的唯一方法是使用页脚委托方法的高度