我正在制作一个iPad应用程序,其中有一个分组的TableView以及各节的标题。

我想在tableview的标题中添加四个标签

四个标签的文本为“公司”,“当前”,“上一个关闭”,“更改”

要么

而不是在标题中添加四个标签,我想添加四个文本“ company”,“ current”,“ prev close”,“ change”

我该怎么办?

请帮助和建议。

谢谢。

最佳答案

UITableView的委托方法用于标头的自定义视图

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
     UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0,0,320,40)];

     UILabel *objLabel = [[UILabel alloc] initWiThFrame:CGRectMake(0,0,320,40)];
     objLabel.text = @"Post";
     [headerView addSubview:objLabel];   //Similarly You can Add any UI Component on header
     [objLabel release];

     return [headerView autorelease];
}

07-28 06:56