这似乎是一个相当普遍的工作流程,我有一个问题,我无法理解为什么。我有一个UITableView与NSFetchedResultsController提供行。要添加新对象,我将插入上下文,然后显示一个新的视图控制器来编辑详细信息。添加按钮操作如下:
-(IBAction)addNewIssueType:(id)sender
{
IssueType *newUntitledType = [NSEntityDescription insertNewObjectForEntityForName:@"IssueType" inManagedObjectContext:self.managedObjectContext];
newUntitledType.name = NSLocalizedString(@"Untitled Task", @"Name for newly created task");
[self saveContext];
self.editingType = newUntitledType;
[self presentNameEditViewForType:newUntitledType];
}
我在saveContext方法中遇到异常,错误:
2013-05-11 16:25:35.990 App [18843:c07] CoreData:错误:严重的应用程序错误。在Core Data更改处理期间捕获到异常。这通常是NSManagedObjectContextObjectsDidChangeNotification的观察者中的错误。 ALL或ANY运算符的左侧必须是NSArray或NSSet。 with userInfo(null)
2013-05-11 16:25:35.992 App [18843:c07] * 由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'ALL或ANY运算符的左侧必须是NSArray或NSSet。'
* 第一次抛出调用堆栈:
以通知观察者的建议为线索,我查看了我的NSFetchedResultsController,可能是范围内NSManagedObjectContext的唯一观察者:
-(NSFetchedResultsController *)typesController
{
if (_typesController) {
return _typesController;
}
// 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:@"IssueType" inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:entity];
// Set the batch size to a suitable number.
[fetchRequest setFetchBatchSize:20];
// Filter out the required types
NSPredicate *exclude = [NSPredicate predicateWithFormat:@"NONE name in %@",excludedTypes];
[fetchRequest setPredicate:exclude];
// Edit the sort key as appropriate.
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObjects:sortDescriptor, nil];
[fetchRequest setSortDescriptors:sortDescriptors];
// Edit the section name key path and cache name if appropriate.
// nil for section name key path means "no sections".
NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:self.managedObjectContext sectionNameKeyPath:nil cacheName:nil];
aFetchedResultsController.delegate = self;
self.typesController = aFetchedResultsController;
NSError *error = nil;
if (![_typesController performFetch:&error]) {
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
[self failAlertWithMessage:nil forceAbort:YES];
}
return _typesController;
}
我发现,如果我注释掉创建和分配谓词的行,它就不会崩溃。当然,我正在展示一些我想隐藏的对象。我看不出谓词本身有什么问题,fetch会返回预期的对象,并按预期排除excludedTypes数组中的那些对象。
保存上下文方法在编辑或删除现有对象时没有任何问题,只有在插入新对象时才会出现问题。
除了主线程之外,我没有使用和线程。
答案 0 :(得分:4)
NONE
是NOT ANY
的别名,确实适用于多人关系。
你可能想要的是:
[NSPredicate predicateWithFormat:@"NOT name in %@", excludedTypes];