2

我只是想让我的应用程序以可移植的方式工作,并且在编译时我不断从 RestKit 收到以下错误

/Pods/Headers/RestKit/RestKit/CoreData/RKManagedObjectStore.h:246:78: error: 
       expected a type

 - (NSManagedObjectContext *)newChildManagedObjectContextWithConcurrencyType:    (NSManagedObjectContextConcurrencyType...

有没有人遇到过这个..?

4

1 回答 1

1

Apportable 还没有实现 NSManagedObjectContextConcurrencyType。

~/.apportable  $  cd ~/.apportable/SDK/System/
~/.apportable/SDK/System  $ grep -r NSManagedObjectContextConcurrencyType *
~/.apportable/SDK/System  $

如果你没有使用 RestKit 的那部分,你可以注释掉导致警告的代码。否则,目前您需要使用其他 API 重新实现它。

于 2013-11-07T15:50:52.963 回答