您的位置:首页 > 移动开发 > IOS开发

iOS-柱状图

2015-09-09 19:38 211 查看


和饼图差不多,代码差别不大

//
//  HMPieView.m
//  饼图
//
//  Created by YaguangZhu on 15/9/9.
//  Copyright (c) 2015年 YaguangZhu. All rights reserved.
//

#import "HMPieView.h"
#import "UIColor+Random.h"

@implementation HMPieView

// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
// Drawing code

NSArray *data = @[@25,@25,@50];
int count = data.count;

CGFloat w = rect.size.width/(2*count -1);
CGFloat h =0;
CGFloat x =0;
CGFloat y =0;
CGFloat viewH = rect.size.height;
CGContextRef ctx = UIGraphicsGetCurrentContext();

for (int i  = 0 ; i< count; i++) {
h = viewH * [data[i] intValue]/100.0;
x= 2 * w * i;
y= viewH - h;
UIBezierPath *path = [UIBezierPath bezierPathWithRect:CGRectMake(x, y, w, h)];
CGContextAddPath(ctx, path.CGPath);

[[UIColor randomColor]set];
CGContextFillPath(ctx);

}

}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[self setNeedsDisplay];
}

@end
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: