在CoreData NSSet上使用'filteredSetUsingPredicate'时崩溃(NSInvalidArgumentException:set参数不是NSSet)

时间:2016-07-31 11:55:26

标签: ios objective-c core-data nspredicate nsset

假设我有NSManagedObject Zoo,他将oneToMany连接到名为cats的'Cat',这个连接是NSSet。 当我使用函数“filteredSetUsingPredicate”时,我遇到以下代码崩溃:

Zoo *zoo = //intance of our zoo with all the animals - from core data 
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"catSize == Big"];
NSArray *arrayOfCats = [zoo.cats filteredSetUsingPredicate:predicate];

崩溃堆栈如下:

Terminating app due to an uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSMutableSet unionSet:]: set argument is not an NSSet'

Crashed: com.apple.main-thread
1  CoreFoundation                 0x180f51798 -[NSMutableSet unionSet:] + 96
2  CoreData                       0x182f24154 -[_NSFaultingMutableSet willReadWithContents:] + 716
3  CoreData                       0x182f05f10 -[_NSFaultingMutableSet count] + 28
4  Foundation                     0x181a93828 -[NSSet(NSPredicateSupport) filteredSetUsingPredicate:] + 68

这种情况偶尔发生一次,可能与我在后台环境中进行的更新和删除有关(如果我坚持这个例子,则添加或删除猫)。 任何想法如何保护我的应用程序免于崩溃?任何访问属性猫导致崩溃。

1 个答案:

答案 0 :(得分:0)

您应该查看关系删除规则,确保其设置正确