IndexTitlesForTableView
IndexTitlesForTableView
Usage
#import "UITableView+LCL.h"
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"xxx";
[tableView setSectionIndexFont:[UIFont systemFontOfSize:25] textColor:[UIColor blueColor]];
[tableView setSectionIndexBackgroundColor:[UIColor colorWithWhite:.5 alpha:1]];
return cell;
}