Do I need to change the color of the sectionIdexTitle to represent the table? How to do it? Anyone know this ?? please, say Me??
It's impossible. You will need to use a custom view:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
Then you can create your own UILabel with any color you want.
With iOS 6 you can do it.
if ([tableView respondsToSelector:@selector(setSectionIndexColor:)]) { tableView.sectionIndexColor = ... ; // some color }
Source: https://habr.com/ru/post/1719149/More articles:.Net ComboBox Binding Issue - sortingWhat is the fastest way to get an object constructor in AS3? - optimizationUnable to access label through segment registers, assembly error - assemblyCreating a Cocoa Full Screen Application - objective-cIs there any chance of cocos2d in MonoTouch? - iphoneC # - Refining the interface - c #How to create an Adobe Flash / Flex chart component from scratch (with AS3 / MXML)? - flexНастройка среды для переполнения буфера - securityHow to get the device token using the Iphone application and other device information? - iphoneUpdate foreign key (entity) with entity infrastructure V1 - c #All Articles