iOS Core-Plot如何使用

此文主要讲iOS项目中如何引用Core-Plot框架

1、下载Core-Plot,解压并拷贝里面的framework文件夹到你的项目中(假设你的项目为testCorePlot),最好重命名为CorePlotFramework

1

2、把CorePlotFramework中的CorePlot.xcodeproj拖到项目中

iOS Core-Plot如何使用_第1张图片
2

3、选中testCorePlot,到Build Phases中,添加CorePlot-CocoaTouchtarget dependencies,再在Link Binary With Libraries中添加libCorePlot-CocoaTouch.aAccelerate.framework

iOS Core-Plot如何使用_第2张图片
3

4、到Build settings中, 找到Header search paths, 添加$(SRCROOT)/CoreplotFramework, 后面选择recursive

iOS Core-Plot如何使用_第3张图片
4

5、还是在build settings中,在Other Linker Flags中添加-ObjC

iOS Core-Plot如何使用_第4张图片
5

6、在项目中引入#import "CorePlot-CocoaTouch.h",正常编译就可以使用了。

你可能感兴趣的:(iOS Core-Plot如何使用)