【发布时间】:2015-09-22 09:10:47
【问题描述】:
我已经尝试了几个小时,但找不到任何可以帮助我解决问题的解决方案。
我的 Podfile 看起来像:
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
xcodeproj 'MyProject.xcodeproj'
# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
target 'MyProject' do
pod 'ZBarSDK', '~> 1.3.1'
pod 'RestKit'
end
我尝试了不同的选项,但没有一个有效。
Header Search Paths 和 Library Search Paths 和 Framework Search Paths 具有:$(inherited) 作为值。
#import <RestKit/RestKit.h> // works fine
#import <RestKit/RKSerialization.h> // I get 'RestKit/RKSerialization.h' file not found
#import <RestKit/RKJSONParserJSONKit.h> // 'RestKit/RKJSONParserJSONKit.h' file not found
更新:
cocapods version - 0.38.0
XCode version - Version 7.0 (7A220)
【问题讨论】:
标签: ios objective-c iphone restkit restkit-0.20