如何在iPhone的表头中放置一些图像

时间:2010-07-22 06:19:08

标签: iphone

我想在表格标题中插入png或一些黑色

 - (NSString *)tableView:(UITableView *)tblView titleForHeaderInSection:(NSInteger)section {

        //tableView.section.backgroundColor = [UIColor blueColor];






        NSString *sectionName = nil;

        switch(section)
        {
            case 0:
                //cell.imageView.image = [UIImage imageNamed:@"bowl.png"];

                sectionName = [NSString stringWithString:@"."];// some black bar
                break;
}

}

但我不能放任何东西:(

1 个答案:

答案 0 :(得分:1)

尝试使用UITableViewDelegate方法代替UITableViewDataSource

tableView:viewForHeaderInSection:
tableView:heightForHeaderInSection

viewForHeader...方法的返回对象可以是UILabel或UIImageView。