|
楼主 |
发表于 2012-12-28 22:40
|
显示全部楼层
740442161 发表于 2012-12-28 22:34
我试过了不行啊!在设置里可以设置的才是第一进入Section主界面是显示,但在你工作界面是没有嘛!!!!
在这里改每个section header的设置
- (UIView *)tableViewUITableView *)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;
}
|
|