IPhone UITableView. How do turn on the single letter alphabetical list like the Music App?

Supply your own index characters: - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView { returnNSArray arrayWithObjects:@"a", @"e", @"i", @"m", @"p", nil; } and then: - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index { return ; } You will need sections.

Easy peasy. Cool beans zaph. Cheers.

– dugla Oct 31 '09 at 19:41 Is there a way to have indexes without having sections (for a flat list)? – ThE uSeFuL Sep 9 '11 at 5:26.

Implement the delegate methods -sectionIndexTitlesForTableView: and -tableView:sectionForSectionIndexTitle:atIndex: See the UITableViewDataSource documentation for more info.

Cheers Alex, will do. – dugla Nov 1 '09 at 1:14.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions