zoukankan      html  css  js  c++  java
  • ios k线画法分析

    Github地址 https://github.com/zhangxiaomeng1/XMLineChartView

    简书 https://www.jianshu.com/u/949e63975031

    采用继承的方法,写了个基类,,重写- (void)drawRect:(CGRect)rect 方法,setNeedsDisplay 调用drawRect方法;

    - (void)drawline:(CGContextRef)context

          startPoint:(CGPoint)startPoint

           stopPoint:(CGPoint)stopPoint

               color:(UIColor *)color

           lineWidth:(CGFloat)lineWitdth;

     

    - (void)drawLabelPrice:(CGContextRef)context;

     

    //高亮状态滑动

    - (void)drawHighlighted:(CGContextRef)context

                      point:(CGPoint)point

                       idex:(NSInteger)idex

                      value:(id)value

                      color:(UIColor *)color

                  lineWidth:(CGFloat)lineWidth;

     

     

    - (void)drawLabel:(CGContextRef)context

       attributesText:(NSAttributedString *)attributesText

                 rect:(CGRect)rect;

    //画柱状图

    - (void)drawRect:(CGContextRef)context

                rect:(CGRect)rect

               color:(UIColor*)color;

     

     

    - (void)drawGridBackground:(CGContextRef)context

                          rect:(CGRect)rect;

  • 相关阅读:
    javascript实战演练,制作新按钮,‘新窗口打开网站’,点击打开新窗
    P1332 血色先锋队
    P4643 [国家集训队]阿狸和桃子的游戏
    T149876 公约数
    P1462 通往奥格瑞玛的道路
    P1083 借教室
    Tribles UVA
    Fence Repair POJ
    Crossing Rivers
    关于一轮
  • 原文地址:https://www.cnblogs.com/zhangxiaomeng1991/p/8619436.html
Copyright © 2011-2022 走看看