我有一个非常简单的问题(我希望如此)。如何将 UITableview 中的部分标题颜色从默认的蓝色更改为黑色透明?提前致谢。
问问题
14684 次
3 回答
21
这是一个老问题,但我认为答案需要更新。
此方法不涉及定义您自己的自定义视图。
在 iOS 6 及更高版本中,您可以通过定义
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)部分委托方法。
例如:
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section { // 背景颜色 view.tintColor = [UIColor blackColor]; // 文字颜色 UITableViewHeaderFooterView *header = (UITableViewHeaderFooterView *)view; [header.textLabel setTextColor:[UIColor whiteColor]]; //另一种设置背景颜色的方法 // 注意:不保留原标题的渐变效果 // header.contentView.backgroundColor = [UIColor blackColor]; }
取自我在这里的帖子: https ://happyteamlabs.com/blog/ios-how-to-customize-table-view-header-and-footer-colors/
于 2013-10-04T05:11:47.183 回答
18
你需要在 UITableViewDelegate 协议中实现这个方法:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
这是文档的链接
...并做这样的事情(以您自己的颜色代替):
UIView *sectionView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 22)] autorelease];
[sectionView setBackgroundColor:[UIColor blackColor]];
return sectionView;
您还可以使用部分整数来交替颜色或类似的东西。我认为这些部分的默认高度是 22,但您可以随意设置。这就是你的问题的意思吗?希望这可以帮助。
于 2010-03-05T22:00:11.447 回答
0
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0,tableView.bounds.size.width, 30)];
if (section == 0)
[headerView setBackgroundColor:[UIColor redColor]];
else
[headerView setBackgroundColor:[UIColor clearColor]];
return headerView;
}
于 2013-07-23T06:55:02.530 回答