如何更改iOS TableView索引颜色?

时间:2017-06-06 06:57:14

标签: ios swift xcode uitableview cocoa-touch

TableView

如何自定义右侧列表的颜色和字体。

2 个答案:

答案 0 :(得分:7)

使用UITableView方法sectionIndexColorsectionIndexBackgroundColor

示例

tableView.sectionIndexColor = UIColor.red
tableView.sectionIndexBackgroundColor = UIColor.clear

答案 1 :(得分:1)

您只需访问 UITableView

sectionIndexColor 方法
yourTableviewName.sectionIndexColor = UIColor.yourDesiredColor   
yourTableviewName.sectionIndexColor = UIColor.red // as Example i have used red color