ios – NSFetchedResultsController v.s. UILocalizedIndexedCollat​​ion

我正在尝试使用具有混合语言数据的FRC,并希望拥有一个section索引.

似乎从文档中你应该可以覆盖FRC的

- (Nsstring *)sectionIndexTitleForSectionName:(Nsstring *)sectionName
- (NSArray *)sectionIndexTitles

然后使用UILocalizedindexedCollat​​ion来具有本地化的索引和部分.但可悲的是,这并不奏效

有没有人能够使用带有UILocalizedindexedCollat​​ion的FRC,或者我们被迫使用示例UITableView UILocalizedindexedCollat​​ion示例中提到的手动排序方法(包含我在这里工作的示例代码).

使用以下属性

@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)中文通常按笔数或语音发音排序.

相关文章

当我们远离最新的 iOS 16 更新版本时,我们听到了困扰 Apple...
欧版/美版 特别说一下,美版选错了 可能会永久丧失4G,不过只...
一般在接外包的时候, 通常第三方需要安装你的app进行测...
前言为了让更多的人永远记住12月13日,各大厂都在这一天将应...