UILocalizedIndexedCollation

简介

UILocalizedIndexedCollation是一个帮助我们组织、排序、本地化表格视图数据的类,表格视图的数据源使用该对象为表格视图提供章节标题及章节索引标题(如下)。

  1. - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
  2. return [[[UILocalizedIndexedCollation currentCollation] sectionTitles] objectAtIndex:section];
  3. }
  4. - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
  5. return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles];
  6. }
  7. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
  8. return [[UILocalizedIndexedCollation currentCollation] sectionForSectionIndexTitleAtIndex:index];
  9. }




参考资源