我正在使用一个 UITableView,其中包含大约 200 个包含标题、副标题和缩略图的单元格。我想要一种选择方法,就像在 Apple 的联系人应用程序中一样,您可以从字母表中选择一个字符。
我正在绘制选择界面(A、B、C 等),并通过它的委托检索相应的索引和标题(即:A = 1、B = 2、C = 3 ETC。)。
现在我想导航到第一个单元格,其中单元格标题的第一个字符以选定的索引字符开头。就像联系人应用程序一样。
有人可以给我一个如何实现这种功能的方向。
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
我通过以下方式填写了我的 sectionIndex
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
if(searching)
return nil;
NSMutableArray *tempArray = [[NSMutableArray alloc] init];
[tempArray addObject:@"A"];
[tempArray addObject:@"B"];
[tempArray addObject:@"C"];
[tempArray addObject:@"D"];
[tempArray addObject:@"E"];
[tempArray addObject:@"F"];
[tempArray addObject:@"G"];
[tempArray addObject:@"H"];
[tempArray addObject:@"I"];
[tempArray addObject:@"J"];
[tempArray addObject:@"K"];
[tempArray addObject:@"L"];
[tempArray addObject:@"M"];
[tempArray addObject:@"N"];
[tempArray addObject:@"O"];
[tempArray addObject:@"P"];
[tempArray addObject:@"Q"];
[tempArray addObject:@"R"];
[tempArray addObject:@"S"];
[tempArray addObject:@"T"];
[tempArray addObject:@"U"];
[tempArray addObject:@"V"];
[tempArray addObject:@"W"];
[tempArray addObject:@"X"];
[tempArray addObject:@"Y"];
[tempArray addObject:@"Z"];
return tempArray;
}