ios – 如何在titleForHeaderInSection方法中更改字体样式和背景颜色

ios – 如何在titleForHeaderInSection方法中更改字体样式和背景颜色,第1张

概述经过漫长的阅读和检查代码,我很自豪拥有一个自定义表视图,其中包含部分和部分标题,全部由核心数据对象填充.现在我需要自定义部分标题和背景颜色.我已经看到它完成,但在一个viewForHeaderInSection方法.我的titleForHeaderInSection方法是不可能的吗? 这里有我的方法: -(NSString*)tableView:(UITableView *)tableView t 经过漫长的阅读和检查代码,我很自豪拥有一个自定义表视图,其中包含部分和部分标题,全部由核心数据对象填充.现在我需要自定义部分标题和背景颜色.我已经看到它完成,但在一个vIEwForheaderInSection方法.我的TitleForheaderInSection方法是不可能的吗?
这里有我的方法:
-(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方法中更改字体样式和背景颜色所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1112805.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存