UITableView以排序顺序切片而不是正确切片

时间:2012-10-09 01:29:18

标签: uitableview core-data nsfetchrequest

所以我试图让UITableView按节(thing.title)显示对象列表,但是按日期降序列出它们。

表格分为几个部分,标记为正确(部分标题是不同的标题)。

但是每个部分中的对象只有一半是正确的。每个部分中的对象按降序列出,但某些部分包含应该在其他部分中的数据。

正在发生的事情的一个例子:

<Header> Big Title Name
    <data><Big Title><id=1></data>
    <data><Big Title><id=4></data>
    **<data><Small Title><id=6></data>**   <-- should not be in this section


<Header> Small Title Name
    <data><Small Title><id=11></data>
    <data><Big Title><id=23></data>  <-- should not be in this section
    **<data><Small Title><id=66></data>**

以下是我的代码的一部分:

- (NSFetchedResultsController *)fetchedResultsController {

if (fetchedResultsController != nil) {
    return fetchedResultsController;
}

/*
 Set up the fetched results controller.
 */
// Create the fetch request for the entity.
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
// Edit the entity name as appropriate.
NSEntityDescription *entity = [NSEntityDescription entityForName:@"AReads" inManagedObjectContext:[NSManagedObjectContext defaultContext]];
[fetchRequest setEntity:entity];

// Set the batch size to a suitable number.
[fetchRequest setFetchBatchSize:20];

// Sort using the timeStamp property..
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"timeStamp" ascending:NO];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];

[fetchRequest setSortDescriptors:sortDescriptors];

// Use the sectionIdentifier property to group into sections.
NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:[NSManagedObjectContext defaultContext] sectionNameKeyPath:@"sessionTitle" cacheName:@"Root"];
aFetchedResultsController.delegate = self;
self.fetchedResultsController = aFetchedResultsController;

return fetchedResultsController;
}


- (NSString*) tableView:(UITableView *)tableView titleForHeaderInSection:  (NSInteger)section
{
//return [(Sessions*)[masterSessions objectAtIndex: section] title];
id <NSFetchedResultsSectionInfo> theSection = [[fetchedResultsController sections] objectAtIndex:section];



NSString *theTitle = [theSection name];


return theTitle;
}

1 个答案:

答案 0 :(得分:1)

用作获取结果控制器的sectionNameKeyPath的密钥和第一个排序描述符中使用的密钥必须是相同的密钥或生成相同的相对排序。因此,您不能将 sessionTitle 用作sectionNameKeyPath,将完全不同的键 timeStamp 用作各部分的排序描述符。

在您的情况下,最好将 timeStamp 用作sectionNameKeyPath并在排序描述符中使用。这将确保所有条目都正确地分组为多个部分。

要在部分标题中显示 sessionTitle 而不是 timeStamp ,您可以修改titleForHeaderInSection

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { 
    id <NSFetchedResultsSectionInfo> sectionInfo = [[self.controller sections] objectAtIndex:section];
    return [[[sectionInfo objects] objectAtIndex:0] sessionTitle];
}