我试图弄清楚我是否使用正确的谓词来获取具有以下模型和代码的 FRC 的给定 Category 对象的 Item 对象:
类别 <----->> 项目
NSEntityDescription *entity =
[NSEntityDescription entityForName:@"Item"
inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:entity];
[fetchRequest setFetchBatchSize:20];
NSSortDescriptor *sortDescriptor =
[[NSSortDescriptor alloc] initWithKey:@"itemLabelText" ascending:YES];
NSArray *sortDescriptors = @[sortDescriptor];
[fetchRequest setSortDescriptors:sortDescriptors];
if (self.category.items) {
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF IN %@",
self.category.items];
[fetchRequest setPredicate:predicate];
}
如果 Category 中没有 Items,我将 collectionview 中的项目数设置为 0。
- (NSInteger)collectionView:(UICollectionView *)collectionView
numberOfItemsInSection:(NSInteger)section
{
if ((self.category.items == nil) || [self.category.items count] == 0) {
return 0;
}
id <NSFetchedResultsSectionInfo> sectionInfo =
[self.fetchedResultsController sections][section];
return [sectionInfo numberOfObjects];
}
FRC 返回对象上下文中的所有项目,而不仅仅是指定类别中的项目。我试图直接获取 Item 对象,而不是创建/引用额外的属性。