Created
November 6, 2012 04:25
-
-
Save mactive/4022540 to your computer and use it in GitHub Desktop.
section index uitebleview 右侧快速索引
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////////////////////////////////////////////////////////////////// | |
#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