0

在 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
4

3 回答 3

0

尝试这样做:

NSString *className = NSStringFromClass([[[fetchedObjects objectAtIndex:i] valueForKey:@"Price"] class]);
NSLog(@"class name: %@", className);

确定你得到什么类型。

于 2012-05-27T17:03:59.980 回答
0

[fetchedObjects objectAtIndex:i] 在这里似乎是一个 NSSet。[[fetchedObjects objectAtIndex:i] valueForKey:@"Price"] 将获取所有具有键“Price”的对象,它是一个 NSSet。祝你好运!

于 2012-05-27T17:23:05.527 回答
0

我意识到我的错误。我正在将 fetchedCustomers 分类为特定的“customerToView”。我没有对我的 fetchedInvoices 做同样的事情。所以我的解决方案是:

NSManagedObject *invoiceToView = [fetchedInvoices objectAtIndex:(int)[invoicesTable selectedRow]];

并使用 invoiceToView 代替 fetchedInvoices。

我的愚蠢错误!

于 2012-05-27T17:27:55.580 回答