Próbuję utworzyć indeks UITableView
szybsze przewijanie dużego UITableView
, mam wskaźnik pokazujący się po prawej stronie, ale gdy próbuję przejść z nim, to nie działa ..Bądź UITableView przewijania przez indeks
Zastanawiam się, czy coś przeoczyłem, więc zastanawiam się, czy jest coś jeszcze, co muszę zrobić, czy coś w tym stylu.
#pragma - TableView Index Scrolling
- (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:@"Y"];
[tempArray addObject:@"X"];
[tempArray addObject:@"Z"];
return tempArray;
}
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
if(searching)
return -1;
return index % 2;
}
okej, pomyślałem, że mogło być, dzięki za twoją odpowiedź .. wygląda na to, że będę musiał przeczytaj, żeby to zrozumieć. Jeśli znasz jakieś przykłady w Internecie i posiadasz link, bardzo bym to docenił. –
Ah Widzę, że to jest to, co oni wydają się robić w tym kroku, myślę. Http: //www.iphonesdkarticles.com/2009/01/uitableview-sectioned-table-view.html –
Tak, dokładnie, to wszystko. –