我正在尝试将CorePlot
与cocoapods
版0.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"文件未找到。
请告诉我是否需要进行任何更改。
提前致谢。
答案 0 :(得分:0)
podfile应包含use_frameworks!
行。将Core Plot构建为框架,import语句应为:
#import "CorePlot.h"
有关使用Objective-C pod的Swift项目的更多疑难解答提示,请参阅this question的答案。