Сортировка контактов по алфавиту с разделом UITableView
у меня есть NSMutableArray : self.contact
С объектами (имя Отсортировано по алфавиту):
(
"Anna Haro",
"Cheesy Cat",
"Daniel Higgins",
"David Taylor",
"Freckles Dog",
"Hank Zakroff",
"John Appleseed",
"Kate BeU00e9ll"
)
мне удается отобразить справа алфавит с этой строкой кода:
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
return[NSArray arrayWithObjects:@"A", @"B", @"C", @"D", @"E", @"F", @"G", @"H", @"I", @"J", @"K", @"L", @"M", @"N", @"O", @"P", @"Q", @"R", @"S", @"T", @"U", @"V", @"W", @"X", @"Y", @"Z", nil];
}
теперь я должен реализовать метод, который позволяет мне получить доступ к хорошему разделу ?
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString*)title atIndex:(NSInteger)index {
}
и, возможно, мне придется измениться numberOfSections ? Вот мой код :
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1
}
следующий :
Я сделал два Массивы:NSArray *test = [self.contact sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
:
(
"Anna Haro",
"Cheesy Cat",
"Daniel Higgins",
"David Taylor",
"Freckles Dog",
"Hank Zakroff",
"John Appleseed",
"Kate BeU00e9ll"
)
и
NSMutableDictionary dicoAlphabet:
// Dictionary will hold our sub-arrays
self.dicoAlphabet = [NSMutableDictionary dictionary];
// Iterate over all the values in our sorted array
for (NSString *value in test) {
// Get the first letter and its associated array from the dictionary.
// If the dictionary does not exist create one and associate it with the letter.
NSString *firstLetter = [value substringWithRange:NSMakeRange(0, 1)];
NSMutableArray *arrayForLetter = [self.dicoAlphabet objectForKey:firstLetter];
if (arrayForLetter == nil) {
arrayForLetter = [NSMutableArray array];
[self.dicoAlphabet setObject:arrayForLetter forKey:firstLetter];
}
// Add the value to the array for this letter
[arrayForLetter addObject:value];
}
// arraysByLetter will contain the result you expect
NSLog(@"Dictionary: %@", self.dicoAlphabet);
возвращает :
Dictionary: {
A = (
"Anna Haro"
);
C = (
"Cheesy Cat"
);
D = (
"Daniel Higgins",
"David Taylor"
);
F = (
"Freckles Dog"
);
H = (
"Hank Zakroff"
);
J = (
"John Appleseed"
);
K = (
"Kate BeU00e9ll"
);
}
1 ответов
попробуйте следующую ссылку. Поможет вам сделать это очень легко. Дайте мне знать, если у вас есть какие-либо проблемы, пока вы это делаете. учебник для Contact view controller заголовки разделов и индекс
Итак, для нестатических данных, скажем, у вас есть массив контактов, называемых arrContacts, тогда вы можете легко отсортировать его с помощью [arrContacts sortUsingSelector: @selector( localizedCaseInsensitiveCompare:)]
теперь, чтобы получить массив со всеми заголовками разделов, просто пройдите через массив и для каждого объекта обрезайте строку до первой буквы и добавьте к этому массив, если его еще нет. Вот и все, теперь у вас есть список разделов в одном массиве и алфавитно отсортированных контактов в другом. Дай мне знать, как все пройдет. ;)