gpt4 book ai didi

objective-c - 如何在iOS7风格上实现 `viewForHeaderInSection`?

转载 作者:太空狗 更新时间:2023-10-30 03:12:07 34 4
gpt4 key购买 nike

如何在 iOS7 风格上实现 (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection: (NSInteger)section 有效吗?

附言我只需要更改 UITableView 标题的颜色并保存它的样式。

最佳答案

您可以在使用 willDisplayHeaderView 渲染之前更改标准表格 View 标题内标​​签的颜色。也适用于 iOS6/iOS7。

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
if([view isKindOfClass:[UITableViewHeaderFooterView class]]){

UITableViewHeaderFooterView *tableViewHeaderFooterView = (UITableViewHeaderFooterView *) view;
tableViewHeaderFooterView.textLabel.textColor = [UIColor blueColor];
}
}

供引用

UITableViewHeaderFooterView: https://developer.apple.com/documentation/uikit/uitableviewheaderfooterview

UITableViewDelegate 协议(protocol): https://developer.apple.com/documentation/uikit/uitableviewdelegate/1614905-tableview

关于objective-c - 如何在iOS7风格上实现 `viewForHeaderInSection`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18817841/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com