UITableView 怎样改变每个section的header的背景

 我来答
我不是他舅
2014-12-01 · TA获得超过138万个赞
知道顶级答主
回答量:29.6万
采纳率:79%
帮助的人:34.6亿
展开全部
在这里改每个section header的设置
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if ([[self.states objectAtIndex:section] count] > 0){
// create the parent view that will hold header Label
//UIView* customView = [[UIView alloc] initWithFrame:CGRectMake(10.0, 0.0, 320, 20)];
UIImageView *image= [[UIImageView alloc] initWithFrame:CGRectMake(10.0, 0.0, 320, 20)];
image.backgroundColor=[UIColor redColor];
//image.image=[UIImage imageNamed:@"call.png"];
//[customView addSubview:image];
//customView.backgroundColor=[UIColor redColor];
// create the button object
UILabel * headerLabel = [[UILabel alloc] initWithFrame:CGRectZero];
headerLabel.backgroundColor = [UIColor clearColor];
headerLabel.opaque = NO;
headerLabel.textColor = [UIColor blackColor];
//headerLabel.highlightedTextColor = [UIColor redColor];
headerLabel.font = [UIFont boldSystemFontOfSize:20];
headerLabel.frame = CGRectMake(10.0, 0.0, 300.0, 44.0);

// If you want to align the header text as centered
// headerLabel.frame = CGRectMake(150.0, 0.0, 300.0, 44.0);
headerLabel.text = [[[UILocalizedIndexedCollation currentCollation] sectionTitles] objectAtIndex:section];

//headerLabel.text =[temp objectAtIndex:5];// i.e. array element
//[customView addSubview:headerLabel];
[image addSubview:headerLabel];
//return customView;
return image;

}
else{
return nil;
}
}

在这里修改index-list(右侧)的背景,但是好像字体不能改,只能改背景
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
//other setting

for(UIView *view in [tableView subviews])
{

if([[[view class] description] isEqualToString:@"UITableViewIndex"])
{

[view setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"HomePage.png"]]];
[view setFont:[UIFont systemFontOfSize:14]];
}
}
return cell;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式