UITableView change header title color
问题 I'm styling the UITableView in InAppSettingsKit and want to change the color of the header title: The labels Without title and Text Field should be white. How can this be done? Thanks. 回答1: You can try following line of code in table cell creation method - cell.textLabel.backgroundColor = //Your color; cell.detailTextLabel.backgroundColor = //Your color; You can refer following for more detail description, where you can find detail example of creating custom sectioned table similar to what