项目介绍:
MDPieView.zip
(69.32 KB, 下载次数: 625)
2016-11-1 15:01 上传
点击文件名下载附件
//初始化
self.percent = 0.1;
self.pieView = [[MDPieView alloc]initWithFrame:CGRectMake(50, 100, 100, 100) andPercent:self.percent andColor:[UIColor blueColor]];
[self.view addSubview:self.pieView];
//刷新数据
self.percent += 0.1;
[self.pieView reloadViewWithPercent:self.percent];