这里有我的方法:
-(Nsstring*)tableVIEw:(UItableVIEw *)tableVIEw TitleForheaderInSection:(NSInteger)section{ ID <NSFetchedResultsSectionInfo> theSection = [[self.fetchedResultsController sections]objectAtIndex:section]; Nsstring *sectionname = [theSection name]; if ([sectionname isEqualToString:@"text 1"]){ return @"Today"; } else if ([sectionname isEqualToString:@"text 2"]){ return @"Tomorrow"; } if ([[self.fetchedResultsController sections]count]>0){ ID<NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections]objectAtIndex:section]; return [sectionInfo name]; } else{ return nil; }}解决方法 以下是使用现有代码设置标题文本的示例,但可以使用UItableVIEwheaderfooterVIEw调整外观:
- (UIVIEw *)tableVIEw:(UItableVIEw *)tableVIEw vIEwForheaderInSection:(NSInteger)section{ static Nsstring *header = @"customheader"; UItableVIEwheaderfooterVIEw *vheader; vheader = [tableVIEw dequeueReusableheaderfooterVIEwWithIDentifIEr:header]; if (!vheader) { vheader = [[UItableVIEwheaderfooterVIEw alloc] initWithReuseIDentifIEr:header]; vheader.textLabel.backgroundcolor = [UIcolor redcolor]; } vheader.textLabel.text = [self tableVIEw:tableVIEw TitleForheaderInSection:section]; return vheader;}
如果需要,您甚至可以将UItableVIEwheaderfooterVIEw子类化,就像您将UItableVIEwCell子类化以进一步自定义外观.
总结以上是内存溢出为你收集整理的ios – 如何在titleForHeaderInSection方法中更改字体样式和背景颜色全部内容,希望文章能够帮你解决ios – 如何在titleForHeaderInSection方法中更改字体样式和背景颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)