我们可以更改表视图标题的颜色我显示的字符串以灰色显示,我们可以为它选择颜色。是否有表视图标题的任何属性 我不是要求表格视图页眉或页脚我的意思是标题
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
// Keep space in the following line ........ DONT REMOVE
return [NSString stringWithFormat:@"Select your service:"];
}
答案 0 :(得分:2)
您可以通过实施-tableView:viewForHeaderInSection:
method。
没有记录的方法来更改标题颜色。 (未记录的方式是覆盖-[UITableHeaderFooterView setText:]
。)