Я получил его, используя быстрое перечисление для заполнения индекса, сначала добавив лупу, а затем добавив все ключи: A, B, C ... X, Y, Z ... 1,2 ,...8,9
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
NSMutableArray *indices =
[NSMutableArray arrayWithCapacity:[sorted count]+1];
[indices addObject:UITableViewIndexSearch];
for (NSString *item in sorted)
[indices addObject:[item substringToIndex:1]];
return indices;
}