iPhone 管理对象删除崩溃
我尝试通过调用 for 循环
[managedObject delete];
和循环中的 at 来删除一些托管对象,我
[managedObjectContext save:nil];
在上面的行调用,应用程序崩溃并且从此无处可去。有什么想法吗?
谢谢
I try to delete some managedobjects by calling in a for loop
[managedObject delete];
and at of the loop, I call
[managedObjectContext save:nil];
At the above line, the app crashes and goes nowhere from there. Any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在调试器中运行并确保在
objc_exception_throw
处中断。如果您无法捕获断点或生成崩溃日志,您将无法在这里找到太多帮助。Run in the debugger and make sure you are breaking on
objc_exception_throw
. If you can't catch the break point or produce a crash log you are not going to find much help here.