CorePlot与可可豆荚0.38.2

时间:2015-08-13 10:58:49

标签: swift cocoapods core-plot

我正在尝试将CorePlotcocoapods0.38.2一起使用。我正在使用CorePlot pod 'CorePlot', :git => 'https://github.com/core-plot/core-plot.git', :branch => 'release-2.0'

在我的bridging文件中,我使用了

#import "CorePlot-CocoaTouch.h"

我在这里收到错误

  

" CorePlot-CocoaTouch.h"文件未找到。

请告诉我是否需要进行任何更改。

提前致谢。

1 个答案:

答案 0 :(得分:0)

podfile应包含use_frameworks!行。将Core Plot构建为框架,import语句应为:

#import "CorePlot.h"

有关使用Objective-C pod的Swift项目的更多疑难解答提示,请参阅this question的答案。