在UITableView中的标题标题旁边添加图像

时间:2012-02-21 18:48:52

标签: ios uitableview

我使用Group-style创建了一个UITableView。我桌上只有一个小组。

以下是我的两个问题:

1)如何在顶部标题中显示标题旁边的图片?基本上我想把我们公司的标识放在那个标题旁边。

2)我可以更改标题中的背景颜色(我不喜欢灰色的颜色),我可以调整标题的高度吗?

1 个答案:

答案 0 :(得分:0)

只需以这种方式将自定义视图返回到标题:

    //Draws a custom view for the header instructions
-(UIView*)tableView:(UITableView*) tableView viewForHeaderInSection:(NSInteger)section;
{
    if ([tableView numberOfRowsInSection:section] != 0) // To handle nil entries
    {
    UIView* headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 60)] autorelease];

         // set up whatever view you want here. E.g.

    UILabel* headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 5, headerView.frame.size.width - 20.0, headerView.frame.size.height)];

        headerLabel.text = @"Tap items in the list to pin them.\nTap the Remix button to clear all unpinned items";
        headerLabel.numberOfLines = 0;

    headerLabel.font = [UIFont fontWithName:@"HelveticaNeueLTStd-Lt" size: 14];
    headerLabel.backgroundColor = [UIColor clearColor];
    headerLabel.textColor = [UIColor colorWithRed:kColorRed green:kColorGreen blue:kColorBlue alpha:1];
    headerLabel.userInteractionEnabled = NO;
        headerLabel.textAlignment = UITextAlignmentCenter;

    headerView.backgroundColor = [UIColor clearColor];

    [headerView setTag:010];
    [headerView setAlpha:1];

    [headerView addSubview:headerLabel];
    [headerLabel release];
    return headerView;
    }
    else {
        return nil;    // again to handle nil tables. You should be nice and at least show an error label on the view.
    }    
}

这给你这样的东西:

How it should only work

相关问题