ios 更改UITableview中Section的字体颜色

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UILabel *customLabel = [[UILabel alloc] init];
    customLabel.text = [self tableView:tableView titleForHeaderInSection:section];
    return customLabel;
}

 

posted on 2013-10-25 11:53  Hai_阔天空  阅读(418)  评论(0)    收藏  举报

导航