0

我尝试在 uitabelview 中为部分提供标题,包含视图大小的标签不能增加超过 50,这是我的代码,

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if(tableView.tag==20)
{
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 55)];
    [view addSubview:label];
    [view setBackgroundColor:[UIColor colorWithRed:166/255.0 green:177/255.0 blue:186/255.0 alpha:1.0]]; 
    return view;
}
}

如何添加如图所示的部分,

在此处输入图像描述

4

2 回答 2

1

转到 setction Height 中的 Table set 中的 xib 见下图在此处输入图像描述

于 2013-09-21T05:51:45.363 回答
1

我认为这将解决您的问题。

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
 return 100;
}

享受编码......

于 2013-09-21T05:48:20.677 回答