我试图在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;
}
}
如何添加如图像中的部分
答案 0 :(得分:1)
我认为这会解决您的问题。
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return 100;
}
享受编码......
答案 1 :(得分:1)
转到表格中的xib设置高度见下图