码迷,mamicode.com
首页 > 其他好文 > 详细

QuizChartViewDemo

时间:2014-11-27 17:38:22      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   文件   on   

效果图:

bubuko.com,布布扣

工程图:

bubuko.com,布布扣

需要导入的文件:QuizChartView.h,QuizChartView.m.

代码:

RootViewController.h

 

#import <UIKit/UIKit.h>

@class QuizChartView;
@interface RootViewController : UIViewController
{
     QuizChartView *m_chartView;
}
@end

 

RootViewController.m

 

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    
    self.title=@"饼图";
    
    
    m_chartView = [[QuizChartView alloc] initWithFrame:CGRectMake(10, 70, 300, 300)];
    m_chartView.backgroundColor = [UIColor orangeColor];
    m_chartView.m_aPercent = [NSMutableArray arrayWithObjects:@"10",@"20",@"30",@"40",nil];
    m_chartView.m_aHint = [NSMutableArray arrayWithObjects:@"早餐",@"午餐",@"晚餐",@"夜宵",nil];
   [self.view addSubview:m_chartView];
    
    

    
}

 

QuizChartViewDemo

标签:style   blog   http   io   ar   color   sp   文件   on   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4126535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!