如何在UiTableView中为截面标题的背景设置透明度的png图像?
答案 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;
}