核心数据在iOS 4.3中不起作用

时间:2012-05-08 15:22:17

标签: ios core-data nsmanagedobjectcontext ios4 nspersistentstore

我的核心数据存在问题。它在iOS 5.0及更高版本中正常运行,但是当我在iOS 4.3中运行它崩溃时,它就崩溃了__managedObjectContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];有人可以帮助我吗?

2012-05-08 17:01:21.617 [7489:10e03] -[NSManagedObjectContext initWithConcurrencyType:]: unrecognized selector sent to instance 0x4ddc6c0
2012-05-08 17:01:21.650 [7489:10e03] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSManagedObjectContext initWithConcurrencyType:]: unrecognized selector sent to instance 0x4ddc6c0'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x0111e5a9 __exceptionPreprocess + 185
    1   libobjc.A.dylib                     0x0153c313 objc_exception_throw + 44
    2   CoreFoundation                      0x011200bb -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3   CoreFoundation                      0x0108f966 ___forwarding___ + 966
    4   CoreFoundation                      0x0108f522 _CF_forwarding_prep_0 + 50
    5   0x00002a42 -[AppDelegate managedObjectContext] + 194
    6   0x00003736 -[HomeViewController fetchFeedDataIntoDocument] + 134
    7   Amsterdam                   0x0000417d -[HomeViewController refresh] + 45
    8   Amsterdam                   0x0000803f -[MBProgressHUD launchExecution] + 143
    9   Foundation                          0x00ae2cf4 -[NSThread main] + 81
    10  Foundation                          0x00ae2c80 __NSThread__main__ + 1387
    11  libsystem_c.dylib                   0x93393ed9 _pthread_start + 335
    12  libsystem_c.dylib                   0x933976de thread_start + 34
)
terminate called throwing an exception(lldb) 

1 个答案:

答案 0 :(得分:1)

initWithConcurrencyType:NSMainQueueConcurrencyType是new是5.0

http://developer.apple.com/library/ios/#releasenotes/General/iOS50APIDiff/index.html

您需要在使用之前检查版本。

您需要检查版本并使用init代替早期版本。