NSFetchedResultsController sectionIndexTitles 错误不是英文字母
Posted
技术标签:
【中文标题】NSFetchedResultsController sectionIndexTitles 错误不是英文字母【英文标题】:NSFetchedResultsController sectionIndexTitles wrong not english letters 【发布时间】:2012-06-05 13:55:40 【问题描述】:我有俄语名字的艺术家数据库。 以下方法显示正确的俄语字母
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:section];
return [sectionInfo name];
但是当我想显示索引线时:
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
return [self.fetchedResultsController sectionIndexTitles];
部分字母是这样的“?”如何解决这个问题?
【问题讨论】:
【参考方案1】:需要子类 NSFetchedResultsController 来覆盖 - (NSString *)sectionIndexTitleForSectionName:(NSString *)sectionName
//or get substring
return sectionName;
【讨论】:
以上是关于NSFetchedResultsController sectionIndexTitles 错误不是英文字母的主要内容,如果未能解决你的问题,请参考以下文章