我在PCH文件中调用导入:
Prefix.pch....
#import <RestKit.h>
Pod File......
platform :ios, :deployment_target => '7.0'
pod 'RestKit', '~> 0.23.3'
它说&#39; RestKit.h&#39;找不到
pch文件包含......:
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import <RestKit.h>
我正在运行cocoapods 0.37.1,我验证了“Link Binary With Libraries&#39;在教程中匹配。