Skip to content

Instantly share code, notes, and snippets.

@mactive
Created November 6, 2012 04:25
Show Gist options
  • Save mactive/4022540 to your computer and use it in GitHub Desktop.
Save mactive/4022540 to your computer and use it in GitHub Desktop.
section index uitebleview 右侧快速索引
/////////////////////////////////////////////////////////////////////////////
#pragma mark - right section index
/////////////////////////////////////////////////////////////////////////////
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
NSArray *newarr=[[contacts_list_fix allKeys] sortedArrayUsingFunction:SortIndex context:NULL];
return newarr;
}
-(NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
{
NSArray *newarr=[[contacts_list_fix allKeys] sortedArrayUsingFunction:SortIndex context:NULL];
return [newarr indexOfObject:title];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment