iOS4上的NSFetchedResultsController问题

时间:2012-02-29 11:16:39

标签: ios uitableview core-data nsfetchedresultscontroller nsfetchrequest

我正在开发一个使用CoreData的应用程序。该视图包含一个UITableView(包含大约50个元素),它使用NSFetchedResultsController。还有一个“Pull to refresh”允许在WS调用之后刷新存储的数据(在具有新的托管对象上下文的另一个线程中)。

在iOS5上一切正常:当我执行“Pull to refresh”时,数据库和tableview会刷新。但是iOS4存在问题。启动应用程序时第一个“performFetch”工作(tableview包含所有数据库记录)但执行“Pull to refresh”时出现以下错误:

2012-02-29 11:56:09.119 Nanopost[1996:207] *** Terminating app due to uncaught exception      'NSObjectInaccessibleException', reason: 'CoreData could not fulfill a fault for '0x5c3c760 <x-coredata://E176B0A1-275B-4332-9231-49FD88238C2B/Ads/p231>''
*** Call stack at first throw:
(
0   CoreFoundation                      0x02bfe919 __exceptionPreprocess + 185
1   libobjc.A.dylib                     0x02e595de objc_exception_throw + 47
2   CoreData                            0x028b833f _PFFaultHandlerLookupRow + 1407
3   CoreData                            0x028b5ee3 _PF_FulfillDeferredFault + 499
4   CoreData                            0x028b9f3f _sharedIMPL_pvfk_core + 95
5   CoreData                            0x0292a010 _PF_Handler_Public_GetProperty + 160
6   Foundation                          0x02442c4f -[NSSortDescriptor compareObject:toObject:] + 128
7   CoreData                            0x0297db5e +[NSFetchedResultsController(PrivateMethods) _insertIndexForObject:inArray:lowIdx:highIdx:sortDescriptors:] + 286
8   CoreData                            0x0297e1b2 -[NSFetchedResultsController(PrivateMethods) _postprocessInsertedObjects:] + 402
9   CoreData                            0x029841bc -[NSFetchedResultsController(PrivateMethods) _managedObjectContextDidChange:] + 1804
10  Foundation                          0x02380c1d _nsnote_callback + 145
11  CoreFoundation                      0x02bd6cf9 __CFXNotificationPost_old + 745
12  CoreFoundation                      0x02b5611a _CFXNotificationPostNotification + 186
13  Foundation                          0x023767c2 -[NSNotificationCenter postNotificationName:object:userInfo:] + 134
14  CoreData                            0x028c0519 -[NSManagedObjectContext(_NSInternalNotificationHandling) _postObjectsDidChangeNotificationWithUserInfo:] + 89
15  CoreData                            0x028f802b -[NSManagedObjectContext mergeChangesFromContextDidSaveNotification:] + 1579
16  Foundation                          0x02395e9a __NSThreadPerformPerform + 251
17  CoreFoundation                      0x02bdfd7f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
18  CoreFoundation                      0x02b3e2cb __CFRunLoopDoSources0 + 571
19  CoreFoundation                      0x02b3d7c6 __CFRunLoopRun + 470
20  CoreFoundation                      0x02b3d280 CFRunLoopRunSpecific + 208
21  CoreFoundation                      0x02b3d1a1 CFRunLoopRunInMode + 97
22  GraphicsServices                    0x031e62c8 GSEventRunModal + 217
23  GraphicsServices                    0x031e638d GSEventRun + 115
24  UIKit                               0x0063cb58 UIApplicationMain + 1160
25  Nanopost                            0x0000230a main + 170
26  Nanopost                            0x00002255 start + 53
)
terminate called after throwing an instance of '_NSCoreDataException'

初始化“NSFetchRequest”时,我将“FetchBatchSize”设置为20(随机):

[l_FetchRequest setFetchBatchSize:20];

但是如果我将“FetchBatchSize”设置为25:

[l_FetchRequest setFetchBatchSize:25];

... iOS4上没有更多的崩溃,我不知道为什么,我想了解这个问题:)我不认为这一行是真正的问题。也许这表明某处出现了另一个问题?

非常感谢您的答案!

托马斯

1 个答案:

答案 0 :(得分:0)

您是否有使用不同背景的原因?我没有切换我的,我有一个非常相似的声音应用程序。

你可以比较的一件事就是这个非常方便的CoreDataTableViewController:

http://www.stanford.edu/class/cs193p/cgi-bin/drupal/node/289

我使用它并且没有任何问题(虽然我没有在iOS 4中运行)。您可以比较一下如何连接fetchedResultsController。

另一点 - 一旦引发异常,你是否有全能断点来推送调试器?如果没有,请添加它(断点,+添加,“添加异常断点”并保留默认值)。这将使你在引发异常的行上进入调试器,这应该是有用的。

祝你好运,

达明