1

我正在尝试删除字母索引器后面的白色视图,但没有运气。我试图说清楚,但到目前为止对我没有任何帮助。

在此处输入图像描述

4

1 回答 1

2

sectionIndexBackgroundColor就是你要找的。你可以做这样的事情,

tableView.sectionIndexBackgroundColor = [UIColor clearColor];

如果要更改突出显示状态的颜色,请使用以下属性。

tableView.sectionIndexTrackingBackgroundColor = [UIColor redColor];

请记住,它sectionIndexBackgroundColor在 iOS7 中可用。因此,如果您支持 iOS6,您可能需要调用类似这样的方法。

if ([tableView respondsToSelector:@selector(sectionIndexBackgroundColor)]) {
    tableView.sectionIndexBackgroundColor = [UIColor clearColor];
}
于 2013-10-08T04:40:58.607 回答