在 Objective-C 中,使用核心数据,我正在获取实体并将它们作为 NSArrays 返回。我意识到我提取的频率太高了,我可以利用实体的返回值,例如:客户实体有很多 Invoices,Invoices 有很多 ItemSolds。这是我正在使用的一些代码:
NSError *error = nil;
// fetch all customers
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Customer"
inManagedObjectContext:managedObjectContext];
[fetchRequest setEntity:entity];
self.fetchedCustomers = [managedObjectContext executeFetchRequest:fetchRequest error:&error];
if (fetchedCustomers == nil) {
NSLog(@"ERROR");
}
[fetchRequest release];
// end of customer fetch
这是简单的获取请求,并且 fetchedCustomers 设置为 NSArray 属性。然后我使用它的功能:
self.fetchedInvoices = [[customerToView valueForKey:@"invoices"] allObjects];
这行得通,我可以在表格中正确显示发票编号和日期。但是我继续使用:
self.fetchedObjects = [[fetchedInvoices valueForKey:@"itemsSold"] allObjects];
后来,当我尝试添加总计时,我执行以下操作:
double price = [[[fetchedObjects objectAtIndex:i] valueForKey:@"Price"] doubleValue];
我收到以下错误:
-[__NSCFSet doubleValue]: unrecognized selector sent to instance 0x10228f730
为什么这里涉及到一个 NSSet?当我使用谓词获取发票和项目时,我没有任何问题,但它似乎真的效率低下。我宁愿弄清楚这里出了什么问题。任何帮助将不胜感激,谢谢。
额外信息:
兴趣范围:
@interface Invoice : NSManagedObject {
@private
}
@property (nonatomic, retain) NSSet *itemsSold;
@end
@interface Invoice (CoreDataGeneratedAccessors)
- (void)addItemsSoldObject:(ItemSold *)value;
- (void)removeItemsSoldObject:(ItemSold *)value;
- (void)addItemsSold:(NSSet *)values;
- (void)removeItemsSold:(NSSet *)values;
@end