Add alphabetical scroll bar in contacts view

This commit is contained in:
Yann Diorcet 2012-08-07 18:45:29 +02:00
parent 1253594c96
commit b751138df0

View file

@ -154,6 +154,10 @@ static void sync_address_book (ABAddressBookRef addressBook, CFDictionaryRef inf
#pragma mark - UITableViewDataSource Functions
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
return [addressBookMap allKeys];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [addressBookMap count];
}