蘋(píng)果健康計(jì)步圖表

今天我們要完成下圖的功能:


圖1.png

開(kāi)始吧

首先我們?cè)O(shè)置漸變的背景顏色:
在-(void)drawRect:(CGRect)rect里面添加下面方法

    /**
      *  設(shè)置漸變背景圖層
      */
- (void)setGradualBackGroundColor{
 // 創(chuàng)建Quartz上下文
CGContextRef context = UIGraphicsGetCurrentContext();

// 創(chuàng)建色彩空間對(duì)象
CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();

// 創(chuàng)建起點(diǎn)顏色
CGColorRef beginColor = CGColorCreate(colorSpaceRef, (CGFloat[]){0.98, 0.505f, 0.258, 1.0f});

// 創(chuàng)建終點(diǎn)顏色
CGColorRef endColor = CGColorCreate(colorSpaceRef, (CGFloat[]){0.99f, 0.03f, 0.07f, 1.0f});

// 創(chuàng)建顏色數(shù)組
CFArrayRef colorArray = CFArrayCreate(kCFAllocatorDefault, (const void*[]){beginColor, endColor}, 2, nil);

// 創(chuàng)建漸變對(duì)象
CGGradientRef gradientRef = CGGradientCreateWithColors(colorSpaceRef, colorArray, (CGFloat[]){
    0.0f,       // 對(duì)應(yīng)起點(diǎn)顏色位置
    1.0f        // 對(duì)應(yīng)終點(diǎn)顏色位置
});

// 釋放顏色數(shù)組
CFRelease(colorArray);

// 釋放起點(diǎn)和終點(diǎn)顏色
CGColorRelease(beginColor);
CGColorRelease(endColor);

// 釋放色彩空間
CGColorSpaceRelease(colorSpaceRef);

CGContextDrawLinearGradient(context, gradientRef, CGPointMake(0.0f, 0.0f), CGPointMake(0, CGRectGetHeight(self.frame)), 0);

// 釋放漸變對(duì)象
CGGradientRelease(gradientRef);
}
背景效果圖:
圖2.png

從圖1可以看出:
折線(xiàn)見(jiàn)的間距 = (視圖寬度 -2*leftRigthMargin - distanceInsertLeft - distanceInsertRigth)/(總點(diǎn)數(shù) - 1)
那我們就可以確定每個(gè)點(diǎn)的X坐標(biāo)了滓侍。根據(jù)_topMargin 和_bottomMargin 來(lái)計(jì)算出y坐標(biāo):

//返回?cái)?shù)組中最大的一個(gè)數(shù)
- (NSInteger)theChartTopY :(NSArray *)arr{
CGFloat max = 0;
for (int index = 0 ; index < arr.count; index ++) {
    NSArray *data = arr[index];
    max = MAX(max, [[data lastObject] floatValue]);
}
 return (NSInteger)max;
}

//返回一個(gè)儲(chǔ)存寬高的二維數(shù)組坐標(biāo)軸[[x,y],[x,y]]
- (NSArray *)arrayWithPointX{
/*
 數(shù)據(jù)_dataPoints格式為 @[@[@"5月21",@"8659"],@[@"22",@"4587"],@[@"23",@"18956"],@[@"24",@"12541"],@[@"26",@"8658"],@[@"27",@"22564"],@[@"28",@"12546"]];
 每個(gè)點(diǎn)的間距 :
 _distanceOfEachPoint = (CGRectGetWidth(self.frame) - 2*_leftRigthMargin- _distanceInsertLeft - _distanceInsertRigth)/(_dataPoints.count -1);
 */
CGFloat maxNum =(CGFloat)[self theChartTopY:_dataPoints];
NSMutableArray *mutableArr = [NSMutableArray arrayWithCapacity:_dataPoints.count];

for (int index = 0; index <_dataPoints.count; index ++) {
    NSArray *data = _dataPoints[index];
    
    NSMutableArray *eachArr = [NSMutableArray arrayWithCapacity:_dataPoints.count];
    
    [eachArr addObject:@(_leftRigthMargin +_distanceInsertLeft + _distanceOfEachPoint*index)];
    [eachArr addObject:@(_topMargin + ((maxNum - [[data lastObject] floatValue])/maxNum)*(CGRectGetHeight(self.frame) - _topMargin - _bottomMargin))];
    
    [mutableArr addObject:eachArr];
}
return [mutableArr copy];
}

接下來(lái)就是畫(huà)點(diǎn)畫(huà)線(xiàn)了:

   /**
    *  畫(huà)圓點(diǎn)
   */
 - (void)drawCircle{
CGFloat side = 5.0;
NSArray *arr = [self arrayWithPointX];
UIColor *color = [UIColor whiteColor];
[color set];
for (int index = 0 ; index < arr.count; index ++) {
    NSArray *eachArr = arr[index];
    UIBezierPath *circlepath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake([eachArr[0] floatValue]- side/2, [eachArr[1] floatValue]- side/2, side, side)];
    [circlepath fill];
  }
}



  /**
   *  畫(huà)水平線(xiàn)
   */
- (void)drawHorizontingLine{

UIColor *color = [UIColor whiteColor];
[color set];
UIBezierPath *path = [UIBezierPath bezierPath];
path.lineWidth = .5;
[path moveToPoint:CGPointMake(_leftRigthMargin, CGRectGetHeight(self.frame ) - _bottomMargin)];
[path addLineToPoint:CGPointMake(CGRectGetWidth(self.frame) - _leftRigthMargin,   CGRectGetHeight(self.frame ) - _bottomMargin)];



[path moveToPoint:CGPointMake(_leftRigthMargin, _topMargin)];
[path addLineToPoint:CGPointMake(CGRectGetWidth(self.frame) - _leftRigthMargin, _topMargin )];
[path stroke];

//畫(huà)中間的虛線(xiàn)
UIBezierPath *dashedPath = [UIBezierPath bezierPath];
dashedPath.lineWidth = .5;
[dashedPath moveToPoint:CGPointMake(_leftRigthMargin, (CGRectGetHeight(self.frame ) - _bottomMargin +_topMargin)/2)];
CGFloat dash[] = {1,1};
[dashedPath setLineDash:dash count:1 phase:0];
[dashedPath addLineToPoint:CGPointMake(CGRectGetWidth(self.frame) - _leftRigthMargin, (CGRectGetHeight(self.frame ) - _bottomMargin +_topMargin)/2 )];

[dashedPath stroke];
   }



    /**
     *  添加折線(xiàn)
    */
- (void)drawLine{
NSArray *arr = [self arrayWithPointX];
UIColor *color = [UIColor whiteColor];
[color set];

UIBezierPath *path = [UIBezierPath bezierPath];
path.lineWidth = 1.0;
path.lineCapStyle  = kCGLineCapRound;//線(xiàn)條拐角
path.lineJoinStyle = kCGLineCapRound;//終點(diǎn)處理

for (int index = 0 ; index < arr.count; index ++) {
    NSArray *XYArr = arr[index];
    
    
    if (!index) {
        [path moveToPoint:CGPointMake([XYArr[0] floatValue], [XYArr[1] floatValue])];
    }else{
        // Draw the lines
        
        [path addLineToPoint:CGPointMake([XYArr[0] floatValue], [XYArr[1] floatValue])];
    }
}

[path stroke];

UIBezierPath *copyPath =   [path copy];
[copyPath addLineToPoint:CGPointMake((CGRectGetWidth(self.frame) - _leftRigthMargin - _distanceInsertRigth  ), CGRectGetHeight(self.frame)-_bottomMargin)];
[copyPath addLineToPoint:CGPointMake(_leftRigthMargin + _distanceInsertLeft, CGRectGetHeight(self.frame)-_bottomMargin)];
[copyPath closePath];
//該方法調(diào)用后饵隙,接下來(lái)拿到的UIGraphicsGetCurrentContext()對(duì)象就是根據(jù)這個(gè)貝塞爾曲線(xiàn)路徑創(chuàng)建的Quartz上下文
[copyPath addClip];

// 創(chuàng)建Quartz上下文
CGContextRef context = UIGraphicsGetCurrentContext();
// 創(chuàng)建色彩空間對(duì)象
CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();
// 創(chuàng)建起點(diǎn)顏色
CGColorRef beginColor = CGColorCreate(colorSpaceRef, (CGFloat[]){1, 1, 1,0.5});

// 創(chuàng)建終點(diǎn)顏色
CGColorRef endColor = CGColorCreate(colorSpaceRef, (CGFloat[]){1, 1, 1, 0});

// 創(chuàng)建顏色數(shù)組
CFArrayRef colorArray = CFArrayCreate(kCFAllocatorDefault, (const void*[]){beginColor, endColor}, 2, nil);
// 創(chuàng)建漸變對(duì)象
CGGradientRef gradientRef = CGGradientCreateWithColors(colorSpaceRef, colorArray, (CGFloat[]){
    0.0f,       // 對(duì)應(yīng)起點(diǎn)顏色位置
    1.0f        // 對(duì)應(yīng)終點(diǎn)顏色位置
  });

  CGContextDrawLinearGradient(context, gradientRef, CGPointMake(_leftRigthMargin , _topMargin), CGPointMake(_leftRigthMargin, CGRectGetHeight(self.frame) - _bottomMargin), 0);
}

添加底部的日期:

   /**
    *  添加底部的日期lable  和最大值的和最小值文本
   */
- (void)addDateInfo{
NSArray *arr = [self arrayWithPointX];

for (int index = 0; index < arr.count; index ++) {
    NSArray *eachArr = arr[index];
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0,_distanceOfEachPoint , _bottomMargin)];
    label.text = _dataPoints[index][0];
    label.textAlignment = 1;
    label.textColor = [UIColor whiteColor];
    label.font = [UIFont systemFontOfSize:13];
    label.center = CGPointMake([eachArr[0] floatValue], CGRectGetHeight(self.frame) - _bottomMargin/2);
    [self addSubview:label];
}

//最大值
UILabel *topLabel = [[UILabel alloc] initWithFrame:CGRectMake(CGRectGetWidth(self.frame) - _distanceInsertRigth -_leftRigthMargin, _topMargin, _distanceInsertRigth, 15)];
topLabel.text = [NSString stringWithFormat:@"%ld",[self theChartTopY:_dataPoints]];
topLabel.font = [UIFont systemFontOfSize:11];
topLabel.textColor = [UIColor whiteColor];
topLabel.textAlignment = 1;
[self addSubview:topLabel];

//最小值
UILabel *bottomLabel = [[UILabel alloc] initWithFrame:CGRectMake(CGRectGetWidth(self.frame) - _distanceInsertRigth -_leftRigthMargin, CGRectGetHeight(self.frame)-_bottomMargin - 15, _distanceInsertRigth, 15)];
bottomLabel.text = @"0";
bottomLabel.font = [UIFont systemFontOfSize:11];
bottomLabel.textColor = [UIColor whiteColor];
bottomLabel.textAlignment = 1;
[self addSubview:bottomLabel];
}
最終效果.png

ps:該demo只是提供一種做漸變的思路玫膀,并沒(méi)有完成整個(gè)圖表。
demo地址

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末戚揭,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌砰琢,老刑警劉巖仰坦,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件履植,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡悄晃,警方通過(guò)查閱死者的電腦和手機(jī)玫霎,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)妈橄,“玉大人庶近,你說(shuō)我怎么就攤上這事【祢荆” “怎么了鼻种?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)溪椎。 經(jīng)常有香客問(wèn)我普舆,道長(zhǎng),這世上最難降的妖魔是什么校读? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任沼侣,我火速辦了婚禮,結(jié)果婚禮上歉秫,老公的妹妹穿的比我還像新娘蛾洛。我一直安慰自己,他們只是感情好雁芙,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布轧膘。 她就那樣靜靜地躺著,像睡著了一般兔甘。 火紅的嫁衣襯著肌膚如雪谎碍。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,772評(píng)論 1 290
  • 那天洞焙,我揣著相機(jī)與錄音蟆淀,去河邊找鬼拯啦。 笑死,一個(gè)胖子當(dāng)著我的面吹牛熔任,可吹牛的內(nèi)容都是我干的褒链。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼疑苔,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼甫匹!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起惦费,我...
    開(kāi)封第一講書(shū)人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤兵迅,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后趁餐,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體喷兼,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年后雷,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了季惯。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡臀突,死狀恐怖勉抓,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情候学,我是刑警寧澤藕筋,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站梳码,受9級(jí)特大地震影響隐圾,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜掰茶,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一暇藏、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧濒蒋,春花似錦盐碱、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至围橡,卻和暖如春暖混,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背翁授。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工儒恋, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留善绎,地道東北人黔漂。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓诫尽,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親炬守。 傳聞我的和親對(duì)象是個(gè)殘疾皇子牧嫉,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容