Is it possible to customize the UITableView\'s section index? I mean, changing the font style/size, background (which is semitransparent by default) etc. I\'m guessing that
its help for ios 6 and ios 7&8
if ([tableview respondsToSelector:@selector(setSectionIndexColor:)]) { if(!IS_IOS6) { tableview.sectionIndexBackgroundColor = [UIColor clearColor]; } tableview.sectionIndexColor = [UIColor whiteColor]; }