(开个小差....)
html有http://echarts.baidu.com/examples.html源码来参考
我们iOS也有https://github.com/danielgindi/Charts 这个呀
源码是swift,对于现在把OC作为主程的我还是需要桥接文件这些东西的,那我们就开始吧😄
创建好后当前文件夹下会出现红框内两个文件
在build setting里搜索 defines module 并设置成Yes
下载https://github.com/danielgindi/Charts
现在将箭头指向的 ##Charts.xcodeproj 直接拖到自己的工程中
拖好的样子
导入静态库
引入Charts
#import "Charts/Charts.h"
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
BarChartView *chatView = [[BarChartView alloc] initWithFrame:CGRectMake(5, 5, [UIScreen mainScreen].bounds.size.width - 10, [UIScreen mainScreen].bounds.size.height - 10)];
[self.view addSubview:chatView];
}
Run 出现如图所示就ok拉
2017-06-09更新------
真机测试时可能会出现Reason: image not found
再运行就可以了