如何更改sectionIndexTitlesForTableView的字母颜色?它可能在iPhone?

时间:2009-10-03 05:11:25

标签: iphone header uicolor

我必须更改sectionIdexTitle的颜色为表视图??如何做到这一点? 任何人都知道吗?请告诉我??

2 个答案:

答案 0 :(得分:0)

这是不可能的。您必须使用自定义视图:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

然后你可以用你想要的任何颜色创建你自己的UILabel。

答案 1 :(得分:0)

从iOS 6开始,你可以做到这一点。

if ([tableView respondsToSelector:@selector(setSectionIndexColor:)]) {
        tableView.sectionIndexColor = ... ;  // some color
}