0

我有带部分的 TableView,这些部分是国家,我从我的核心数据实体中获取它们。我为我的表格视图设置了背景图像,现在我想更改该部分的标题颜色。我怎样才能做到这一点?到目前为止,这是我的代码。

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections]objectAtIndex:section];

    NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
    if (sectionTitle == nil) {
        return nil;
    }

    // Create label with section title
    UILabel *label = [[UILabel alloc] init];
    label.frame = CGRectMake(20, 6, 300, 30);
    label.backgroundColor = [UIColor clearColor];
    label.textColor = [UIColor whiteColor];
    label.shadowColor = [UIColor blackColor];
    label.shadowOffset = CGSizeMake(0.0, 1.0);
    label.font = [UIFont boldSystemFontOfSize:16];
    //label.text = sectionTitle;
    label.text=[sectionInfo name];
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width,tableView.bounds.size.height)];

    [view addSubview:label];

    return [sectionInfo name];

}

当我尝试我的代码时出现错误

4

2 回答 2

1

您只需要在该方法中返回一个字符串(标题)。查看:

- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

那是您应该自定义外观的地方。

于 2012-04-25T09:18:26.957 回答
0

如果要更改 UITableView 中部分的颜色,则应使用 UITableViewDelegate 中的此方法

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
于 2012-04-25T09:18:46.770 回答