我希望MSCollectionViewCalendarLayout的示例编译并运行。
我已经完成的步骤:
现在我要
了Undefined symbols for architecture i386:
"_RKLogCoreDataError", referenced from:
___33-[RKEntityByAttributeCache load:]_block_invoke in libRestKit.a(RKEntityByAttributeCache.o)
___43-[RKManagedObjectImporter finishImporting:]_block_invoke in libRestKit.a(RKManagedObjectImporter.o)
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我尝试了here的提示,但版本似乎错了。
我该如何运行这个项目?
答案 0 :(得分:3)
问题是,RestKit
中指定的0.22.0
版本(Podfile
)与Cocoapods 0.38.x
不兼容。切换到最新版本0.24.1
应解决此问题:
在Podfile中:
pod 'RestKit', '0.24.1'