iOS走势图

绘制如图的走势图,原理其实很简单。需要用到CGContext,确定选中的数字,获取选中数字的坐标,然后根据坐标在两个选中的数字中绘制连线。

彩票走势图

首先定义几个宏定义:

#define maxNum 10    // 假设每行都10个数字
#define FormWidth [[UIScreen mainScreen] bounds].size.width/(maxNum+1)    // 每个放个都长宽
#define FormHeight FormWidth
#define SCREEN_WIDTH [[UIScreen mainScreen] bounds].size.width

定义几个数组来保存数据:

@interface ChartView()

@property (nonatomic , copy) NSArray *xDatas;      // 每行的数字为0~9
@property (nonatomic , copy) NSArray *yDatas;      // 每列的数据
@property (nonatomic , strong) NSMutableArray *fillDatas;  // 来存放选中号码的数组
@property (nonatomic , strong) NSMutableArray *frameArray;  // 用来存放坐标的数组

@end

初始化页面,并在数组中填入一些数据:

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        _yDatas = @[@"01期",@"02期",@"03期",@"04期",@"05期",@"06期",@"07期",@"08期",@"09期",@"10期"];
        _xDatas = @[@"0",@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9"];
        // 选中号码数组
        _fillDatas = [NSMutableArray new];
        _frameArray = [NSMutableArray new];
        self.backgroundColor = [UIColor whiteColor];
        // 随机取选中号码
        for (NSInteger i = 0; i < _xDatas.count; i++) {
            NSString *number = [self randomFormArray:_xDatas];
            [_fillDatas addObject:number];
        }
    }
    return self;
}

- (NSString *)randomFormArray:(NSArray *)array {
    NSInteger count = array.count;
    NSInteger index = arc4random() % count;
    
    return [NSString stringWithFormat:@"%ld" , index];
}

下面是主要的绘制部分,原理很简单基本上都有注释就不多说了:

- (void)drawRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();
    // FormHeight 为格子高度 7是离上边界的距离 不设置 就会出现显示边界的线不好控制
    // 根据yData数据绘制横向线
    for (int i = 0; i <= _yDatas.count; i++) {
        if (i < _yDatas.count) {
            NSString *date = _yDatas[i];
            // 调用计算字符串宽高方法
            CGSize size = [self calculationTextIsze:date andSize:CGSizeMake(FormWidth, FormHeight)];
            [date drawInRect:CGRectMake((FormWidth-size.width)/2.0, (FormHeight-size.height)/2.0+FormHeight*i+7, FormWidth, FormHeight) withAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12] , NSForegroundColorAttributeName : [UIColor blackColor]}];
        }
        
        // 设置画笔颜色
        // 描边颜色
        CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);
        CGContextSetLineWidth(context, 1);
        // 画笔的起始坐标
        // 画笔移动到该点开始画线
        CGContextMoveToPoint(context, 0, i * FormHeight + 7);
        // 画直线到该点
        CGContextAddLineToPoint(context, SCREEN_WIDTH, i * FormHeight + 7);
        // 根据坐标绘制路径  kCGPathStroke:只有边框
        CGContextDrawPath(context, kCGPathStroke);
    }
    
    // 设置彩票号码
    for (int j = 0; j <= _yDatas.count; j++) {
        if (j < maxNum) {
            for (int i = 0; i < maxNum; i++) {
                NSString *dateStr = _xDatas[j];
                CGSize size = [self calculationTextIsze:dateStr andSize:CGSizeMake(FormWidth, FormHeight)];
                [dateStr drawInRect:CGRectMake((FormWidth-size.width)/2.0+j*FormWidth+FormWidth,(FormHeight-size.height)/2.0+i*FormHeight+7, FormWidth, FormHeight) withAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12] , NSForegroundColorAttributeName : [UIColor blackColor]}];
            }
        }
        // 绘制纵向边界线
        CGContextSetStrokeColorWithColor(context, [UIColor grayColor].CGColor);
        CGContextSetLineWidth(context, 1);
        CGContextMoveToPoint(context, j * FormWidth , 7);
        CGContextAddLineToPoint(context, j * FormWidth, maxNum * FormWidth + 7);
        CGContextDrawPath(context, kCGPathStroke);
    }
    
    // 画填充圆
    for (int i = 0; i < _fillDatas.count; i++) {
        CGContextSetStrokeColorWithColor(context, [UIColor grayColor].CGColor);
        CGContextSetLineWidth(context, 1);
        NSString *number = _fillDatas[i];
        for (int x = 0 ; x < _xDatas.count; x++) {
            if ([number intValue] == x) {
                // 画圆
                CGContextAddArc(context, FormWidth*x+FormWidth/2+FormWidth, FormHeight*i+FormHeight/2+7, FormHeight/2, 0, M_PI*2, 1);
                // 计算出圆的中心点
                CGPoint point = CGPointMake(FormWidth*x+FormWidth/2+FormWidth, FormHeight*i+FormHeight/2+7);
                NSString *str = NSStringFromCGPoint(point);
                // 保存圆中心的位置,给下面连线
                [_frameArray addObject:str];
                CGContextSetStrokeColorWithColor(context, [UIColor grayColor].CGColor);
                CGContextDrawPath(context, kCGPathStroke);
                
                // 填满整个圆
                CGContextAddArc(context, FormWidth*x+FormWidth/2+FormWidth, FormHeight*i+FormHeight/2+7, FormWidth/2, 0, M_PI*2, 1);
                // 设置填充颜色
                CGContextSetFillColorWithColor(context, [UIColor grayColor].CGColor);
                // 根据坐标绘制路径  kCGPathFill:只有填充,不绘制边框
                CGContextDrawPath(context, kCGPathFill);
                NSString *numberStr = [NSString stringWithFormat:@"%@" , number];
                CGSize size = [self calculationTextIsze:numberStr andSize:CGSizeMake(FormWidth, FormWidth)];
                // 画内容 被选中的号码
                [numberStr drawInRect:CGRectMake((FormWidth-size.width)/2.0+x*FormWidth+FormWidth,(FormHeight-size.height)/2.0+i*FormHeight+7, FormWidth, FormHeight) withAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:12],NSForegroundColorAttributeName:[UIColor redColor]}];
            }
        }
    }
    
    // 绘制连线
    for (int i = 0; i < _frameArray.count; i++) {
        NSString *pointStr = [_frameArray objectAtIndex:i];
        CGPoint point = CGPointFromString(pointStr);
        // 设置画笔颜色
        CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);
        CGContextSetLineWidth(context, 2);
        if (i == 0) {
            // 画笔起始坐标
            CGContextMoveToPoint(context, point.x, point.y);
        } else {
            NSString *str1 = [_frameArray objectAtIndex:i-1];
            CGPoint point1 = CGPointFromString(str1);
            CGContextMoveToPoint(context, point1.x, point1.y);
            CGContextAddLineToPoint(context, point.x, point.y);
        }
        CGContextDrawPath(context, kCGPathStroke);
    }
}
// 根据文字内容计算宽高方法
- (CGSize)calculationTextIsze:(NSString *)text andSize:(CGSize)size {
    NSMutableParagraphStyle *paragraphStyle = [NSMutableParagraphStyle new];
    paragraphStyle.alignment = NSTextAlignmentLeft;
    NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:12] , NSParagraphStyleAttributeName : paragraphStyle};
    
    CGSize contentSize = [text boundingRectWithSize:CGSizeMake(size.width, MAXFLOAT) options:(NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading) attributes:attributes context:nil].size;
    return contentSize;
}

绘制简单的走势图就是这些代码,这里也有demo可以下载:(https://github.com/sunbin117/chartView)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,076评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,658评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,732评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,493评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,591评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,598评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,601评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,348评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,797评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,114评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,278评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,953评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,585评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,202评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,442评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,180评论 2 367
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,139评论 2 352

推荐阅读更多精彩内容