我必须更改sectionIdexTitle的颜色为表视图??如何做到这一点? 任何人都知道吗?请告诉我??
答案 0 :(得分:0)
这是不可能的。您必须使用自定义视图:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
然后你可以用你想要的任何颜色创建你自己的UILabel。
答案 1 :(得分:0)
从iOS 6开始,你可以做到这一点。
if ([tableView respondsToSelector:@selector(setSectionIndexColor:)]) {
tableView.sectionIndexColor = ... ; // some color
}