改变部分文本uitableview

时间:2013-01-04 10:12:54

标签: ios uitableview

我正在寻找一种方法来更改section headersUITableView的标题。我一直在看网络和这个论坛,但找不到答案。这种性质的大多数主题都围绕着改变section header title的字体和颜色。

因此,表格视图填充了,例如, 3个部分:第1部分,第2部分,第3部分。现在我该如何将这些标题更改为我想要的标题?

菲利普

1 个答案:

答案 0 :(得分:0)

您可以更改UITableView部分标题,如下所示

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    NSString *name;
    switch (section)
        {
        case 0:
            name = firstHeader;
            break;
        case 1:
            name =  secondHeader;
            break;

        default:
            name = @"";
            break;
    }    
    return name;
}

<强>更新 当您收到UITableView中任何部分的修改时,为什么不调用此方法来更新部分

 - (void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation

这将使用漂亮的动画更新Selected部分