在iPhone音乐应用程序中,选择“艺术家”,“歌曲”或“专辑”将在UI的右侧显示一个tableView,其中包含单个字母的垂直列表,从而可以快速滚动。如何在我的应用程序中启用此功能?
干杯,
道格
最佳答案
提供您自己的索引字符:
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
return[NSArray arrayWithObjects:@"a", @"e", @"i", @"m", @"p", nil];
}
接着:
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString
*)title atIndex:(NSInteger)index {
return <yourSectionIndexForTheSectionForSectionIndexTitle >;
}
您将需要一些部分。
关于ios - iPhone UITableView。如何打开音乐应用程序之类的单字母字母列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1655119/