NSManagedObjectContext

NSManagedObjectContext

本文介绍了NSManagedObjectContext保存不会崩溃,但打破objc_exception_throw的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在此地址遇到相同的问题 http://www.cocoabuilder.com/archive/cocoa/288659-iphone-nsmanagedobjectcontext-save-doesn-crash-but-breaks-on-objc-exception-throw.html a>

I am having the same issue described at this address http://www.cocoabuilder.com/archive/cocoa/288659-iphone-nsmanagedobjectcontext-save-doesn-crash-but-breaks-on-objc-exception-throw.html

我使用多线程调试一个使用Core Data的应用程序,我在objc_exception_throw上有一个断点,它在调用保存时触发了这个断点。 (代码中的第2行)

I am debugging an application that uses Core Data with multithreading, and I have a breakpoint on objc_exception_throw and it hits this breakpoint in the call to save. (line 2 in code)

        NSError *error = nil;
        [self.managedObjectContext save:&error];
        if (error) {
            NSLog(@"Error : %@",error);
        }

我没有任何记录的东西。
我使用Xcode 4与ios 4.0 - > 4.3。我认为这与Xcode / iOS版本无关。

I don't have any thing that is logged.I am using Xcode 4 with ios 4.0 -> 4.3. I think this is not related to Xcode/iOS version.

推荐答案