我正在尝试使用Cocoapods 1.0.1下载coreplot,但它不断抛出'CorePlot/CorePlot-CocoaTouch.h' file not found错误,我尝试了网络上给出的各种解决方案,但对我没有任何帮助。帮我解决这个问题。

这是我的podfile代码的示例

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '7.0'

xcodeproj 'Sample'

pod 'CorePlot', :git => 'https://github.com/core-plot/core-plot.git', :branch => 'release-2.0'
pod 'Google/Analytics'


target 'SampleKIFTests', :exclusive => true do
  pod 'KIF', '~> 3.3.0'
  pod 'KIF/IdentifierTests', '~> 3.3.0'
end

最佳答案

在构建为静态库时,使用以下行包括标头:

#import "CorePlot-CocoaTouch.h"

或者在构建框架时使用以下代码:
#import <CorePlot/CorePlot.h>

关于ios - 使用cocoapods-1.0.1下载时Coreplot引发错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39471858/

10-10 16:49