我想在表格标题中插入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;
}
}
但我不能放任何东西:(
答案 0 :(得分:1)
尝试使用UITableViewDelegate
方法代替UITableViewDataSource
:
tableView:viewForHeaderInSection:
tableView:heightForHeaderInSection
viewForHeader...
方法的返回对象可以是UILabel或UIImageView。