UitableView中的部分的背景图像

时间:2010-08-06 04:50:16

标签: iphone

如何在UiTableView中为截面标题的背景设置透明度的png图像?

1 个答案:

答案 0 :(得分:8)

我认为您需要在其中创建一个带有UIImageView的UIView。

类似的东西:

- (void) createHeader
{
    header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 50)];
    header.backgroundColor = [UIColor colorWithWhite:0 alpha:0];
    UIImageView *headerImage = [[UIImageView alloc] initWithImage:yourImage];

    [header addSubview:headerImage];
    [headerImage release];
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    return header;
}