似乎从文档中你应该可以覆盖FRC的
- (NSString *)sectionIndexTitleForSectionName:(NSString *)sectionName - (NSArray *)sectionIndexTitles
然后使用UILocalizedIndexedCollation来具有本地化的索引和部分.但可悲的是,这并不奏效
有没有人能够使用带有UILocalizedIndexedCollation的FRC,或者我们被迫使用示例UITableView UILocalizedIndexedCollation示例中提到的手动排序方法(包含我在这里工作的示例代码).
使用以下属性
@property (nonatomic,assign) UILocalizedIndexedCollation *collation; @property (nonatomic,assign) NSMutableArray *collatedSections;
和代码:
- (UILocalizedIndexedCollation *)collation { if(collation == nil) { collation = [UILocalizedIndexedCollation currentCollation]; } return collation; } - (NSArray *)collatedSections { if(_collatedSections == nil) { int sectionTitlesCount = [[self.collation sectionTitles] count]; NSMutableArray *newSectionsArray = [[NSMutableArray alloc] initWithCapacity:sectionTitlesCount]; collatedSections = newSectionsArray; NSMutableArray *sectionsCArray[sectionTitlesCount]; // Set up the sections array: elements are mutable arrays that will contain the time zones for that section. for(int index = 0; index < sectionTitlesCount; index++) { NSMutableArray *array = [[NSMutableArray alloc] init]; [newSectionsArray addObject:array]; sectionsCArray[index] = array; [array release]; } for(NSManagedObject *call in self.fetchedResultsController.fetchedObjects) { int section = [collation sectionForObject:call collationStringSelector:NSSelectorFromString(name)]; [sectionsCArray[section] addObject:call]; } NSArray *sortDescriptors = self.fetchedResultsController.fetchRequest.sortDescriptors; for(int index = 0; index < sectionTitlesCount; index++) { [newSectionsArray replaceObjectAtIndex:index withObject:[sectionsCArray[index] sortedArrayUsingDescriptors:sortDescriptors]]; } } return [[collatedSections retain] autorelease]; } - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { // The number of sections is the same as the number of titles in the collation. return [[self.collation sectionTitles] count]; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { // The number of time zones in the section is the count of the array associated with the section in the sections array. return [[self.collatedSections objectAtIndex:section] count]; } - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { if([[self.collatedSections objectAtIndex:section] count]) return [[self.collation sectionTitles] objectAtIndex:section]; return nil; } - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView { return [self.collation sectionIndexTitles]; } - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index { return [self.collation sectionForSectionIndexTitleAtIndex:index]; }
我希望仍然可以使用FRCDelegate协议通知更新.似乎没有一个很好的方式使这两个对象很好地协同工作.
解决方法
>为Core Data模型中的每个实体中的每个可排序属性创建一个名为“sectionKey”的字符串属性. sectionKey属性将是从基本属性派生的计算值(例如,名称或标题属性).它必须被持久化,因为(当前)一个transient属性不能用于提取请求的排序描述符.启用每个sectionKey和基础属性的索引,为其提供排序.为了将此更新应用于现有应用程序,您将需要执行轻量级迁移,并且还包括一个例程来更新预先存在的数据库.
>如果您正在播种数据(例如,使用一组标准数据填充新的安装,或为每个目标语言创建本地化的sqlite数据库,在初始启动时将复制其中的一个),在该代码中,计算和更新每个实体的sectionKey属性.关于播种数据的“最佳”方法的意见有所不同,但值得注意的是,每种语言的一些plist文件(通常范围从几个字节到20k,即使是由几百个值组成的列表)也将离开比每个语言的单个sqlite数据库(每个大约20k开始)小得多的整体占用空间.在附注中,Microsoft Excel for Mac可以配置为通过启用语言功能来提供列表的本地化排序(3).
>在获取的结果控制器构造函数中,对sectionKey和base属性进行排序,并传递sectionKey作为区段名称键路径.
>添加计算逻辑来更新所有添加或编辑用户输入中的sectionKey属性,例如,在textFieldDidEndEditing:中.
而已!将获取的对象手动划分为数组数组. NSFetchedResultsController将为您执行本地化的归类.例如,在中文(简体)的情况下,获取的对象将通过语音发音(4)进行索引.
(1)从Apple IOS开发者库>国际化编程主题> Internationalization and Localization.
(2)7001的3_SimpleIndexedTableView.
(3)How to enable Chinese language features in Microsoft Office for Mac.(4)中文通常按笔数或语音发音排序.