CoreGraphic框架解析(三)—— 類波浪線的實現(xiàn)

版本記錄

版本號 時間
V1.0 2017.08.08

前言

quartz是一個通用的術(shù)語褒墨,用于描述在iOSMAC OS X 中整個媒體層用到的多種技術(shù) 包括圖形敬肚、動畫菜循、音頻捅膘、適配添祸。Quart 2D 是一組二維繪圖和渲染APICore Graphic會使用到這組API寻仗,Quartz Core專指Core Animation用到的動畫相關(guān)的庫刃泌、API和類。CoreGraphicsUIKit下的主要繪圖系統(tǒng)署尤,頻繁的用于繪制自定義視圖耙替。Core Graphics是高度集成于UIView和其他UIKit部分的。Core Graphics數(shù)據(jù)結(jié)構(gòu)和函數(shù)可以通過前綴CG來識別曹体。在app中很多時候繪圖等操作我們要利用CoreGraphic框架俗扇,它能繪制字符串、圖形箕别、漸變色等等铜幽,是一個很強大的工具滞谢。感興趣的可以看我另外幾篇。
1. CoreGraphic框架解析(一)—— 基本概覽
2. CoreGraphic框架解析(二)—— 基本使用

功能要求

實現(xiàn)波浪線的海浪效果除抛,比如中國聯(lián)通客戶端頂部剩余流量的波浪線狮杨。

效果圖

功能實現(xiàn)

下面還是直接看代碼。

1. JJCoreGraphicWaveVC.m
#import "JJCoreGraphicWaveVC.h"
#import "JJCoreGraphicWaveView.h"
#import "Masonry.h"

@interface JJCoreGraphicWaveVC ()

@end

@implementation JJCoreGraphicWaveVC

#pragma mark - Override Base Function

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    self.title = @"CoreGraphic實現(xiàn)波浪線";
    
    //加載波浪線視圖
    JJCoreGraphicWaveView *waveView = [[JJCoreGraphicWaveView alloc] init];
    [self.view addSubview:waveView];
    
    [waveView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.center.equalTo(self.view);
        make.width.equalTo(@300);
        make.height.equalTo(@200);
    }];
}

@end
2. JJCoreGraphicWaveView.m
#import "JJCoreGraphicWaveView.h"

#define kJJCoreGraphicWaveViewScreenWidth       [UIScreen mainScreen].bounds.size.width
#define kJJCoreGraphicWaveViewScreenHeight      [UIScreen mainScreen].bounds.size.height

@interface JJCoreGraphicWaveView ()

@property (nonatomic, strong) UIColor *waterColor;
@property (nonatomic, assign) CGFloat waterLineY;
@property (nonatomic, assign) CGFloat waveAmplitude;
@property (nonatomic, assign) CGFloat waveCycle;
@property (nonatomic, assign) BOOL isIncrease;
@property (nonatomic, strong) CADisplayLink *waveDisplayLink;

@end

@implementation JJCoreGraphicWaveView

#pragma mark - Override Base Function

- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        [self setInitConfig];
    }
    return self;
}

- (void)drawRect:(CGRect)rect
{
    //初始化畫布
    CGContextRef context = UIGraphicsGetCurrentContext();
    
    //推入
    CGContextSaveGState(context);
    
    //定義前波浪path
    CGMutablePathRef frontPath = CGPathCreateMutable();
    
    //定義后波浪path
    CGMutablePathRef backPath = CGPathCreateMutable();
    
    //定義前波浪反色path
    CGMutablePathRef frontReversePath = CGPathCreateMutable();
    
    //定義后波浪反色path
    CGMutablePathRef backReversePath = CGPathCreateMutable();
    
    //畫水
    CGContextSetLineWidth(context, 1);
    
    //前波浪位置初始化
    float frontY = self.waterLineY;
    CGPathMoveToPoint(frontPath, NULL, 0, frontY);
    
    //前波浪反色位置初始化
    float frontReverseY = self.waterLineY;
    CGPathMoveToPoint(frontReversePath, NULL, 0,frontReverseY);
    
    //后波浪位置初始化
    float backY = self.waterLineY;
    CGPathMoveToPoint(backPath, NULL, 0, backY);
    
    //后波浪反色位置初始化
    float backReverseY = self.waterLineY;
    CGPathMoveToPoint(backReversePath, NULL, 0, backReverseY);
    
    for(float x = 0; x <= kJJCoreGraphicWaveViewScreenWidth; x ++){
        
        //前波浪繪制
        frontY= _waveAmplitude * sin( x/180 * M_PI + 4 * self.waveCycle/M_PI ) * 5 + self.waterLineY;
        CGPathAddLineToPoint(frontPath, nil, x, frontY);
        
        //后波浪繪制
        backY= _waveAmplitude * cos( x/180 * M_PI + 3 * self.waveCycle/M_PI ) * 5 + self.waterLineY;
        CGPathAddLineToPoint(backPath, nil, x, backY);
        
        if (x>=100) {
            
            //后波浪反色繪制
            backReverseY= _waveAmplitude * cos( x/180 * M_PI + 3 * self.waveCycle/M_PI ) * 5 + self.waterLineY;
            CGPathAddLineToPoint(backReversePath, nil, x, backReverseY);
            
            //前波浪反色繪制
            frontReverseY= _waveAmplitude * sin( x/180 * M_PI + 4 * self.waveCycle/M_PI ) * 5 + self.waterLineY;
            CGPathAddLineToPoint(frontReversePath, nil, x, frontReverseY);
        }
    }
    
    //后波浪繪制
    CGContextSetFillColorWithColor(context, [UIColor greenColor].CGColor);
    CGPathAddLineToPoint(backPath, nil, kJJCoreGraphicWaveViewScreenWidth, rect.size.height);
    CGPathAddLineToPoint(backPath, nil, 0, rect.size.height);
    CGPathAddLineToPoint(backPath, nil, 0, self.waterLineY);
    CGPathCloseSubpath(backPath);
    CGContextAddPath(context, backPath);
    CGContextFillPath(context);
    
    //推入
    CGContextSaveGState(context);
    
    //后波浪反色繪制
    CGPathAddLineToPoint(backReversePath, nil, kJJCoreGraphicWaveViewScreenWidth, rect.size.height);
    CGPathAddLineToPoint(backReversePath, nil, 100, rect.size.height);
    CGPathAddLineToPoint(backReversePath, nil, 100, self.waterLineY);
    
    CGContextAddPath(context, backReversePath);
    CGContextClip(context);

    //彈出
    CGContextRestoreGState(context);
    
    //前波浪繪制
    CGContextSetFillColorWithColor(context, [_waterColor CGColor]);
    CGPathAddLineToPoint(frontPath, nil, kJJCoreGraphicWaveViewScreenWidth, rect.size.height);
    CGPathAddLineToPoint(frontPath, nil, 0, rect.size.height);
    CGPathAddLineToPoint(frontPath, nil, 0, self.waterLineY);
    CGPathCloseSubpath(frontPath);
    CGContextAddPath(context, frontPath);
    CGContextFillPath(context);
    
    //推入
    CGContextSaveGState(context);
    
    //前波浪反色繪制
    CGPathAddLineToPoint(frontReversePath, nil, kJJCoreGraphicWaveViewScreenWidth, rect.size.height);
    CGPathAddLineToPoint(frontReversePath, nil, 100, rect.size.height);
    CGPathAddLineToPoint(frontReversePath, nil, 100, self.waterLineY);
    
    CGContextAddPath(context, frontReversePath);
    CGContextClip(context);
    
    //推入
    CGContextSaveGState(context);
    
    //釋放
    CGPathRelease(backPath);
    CGPathRelease(backReversePath);
    CGPathRelease(frontPath);
    CGPathRelease(frontReversePath);
}

#pragma mark - Object Private Function

- (void)setInitConfig
{
    self.backgroundColor = [UIColor clearColor];
    self.waveAmplitude = 3.0;
    self.waveCycle = 1.0;
    self.waterColor = [UIColor colorWithRed:90/255.0 green:200/255.0 blue:140/255.0 alpha:1.0];
    self.waterLineY = 20.0;
    self.waveDisplayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(waveDidRun)];
    [self.waveDisplayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];
}

#pragma mark - Action && Notification

//CADisplayLink到忽,每秒60次刷新界面

- (void)waveDidRun
{
    if (self.isIncrease) {
        self.waveAmplitude += 0.03;
    }
    else {
        self.waveAmplitude -= 0.03;
    }
    
    if (self.waveAmplitude <= 1) {
        self.isIncrease = YES;
    }
    
    if (self.waveAmplitude >= 1.5) {
        self.isIncrease = NO;
    }
    
    //速度控制
    self.waveCycle += 0.02;
    
    //調(diào)用drawRect方法不停的繪制
    [self setNeedsDisplay];
}

@end

還有幾點要說明下:

  • CADisplayLink頻率是每秒鐘更新60次橄教,更新速度很快。
  • JJCoreGraphicWaveView必須給布局和大小frame喘漏,否則- (void)drawRect:(CGRect)rect方法是不會調(diào)用的护蝶。

功能效果

下面我們就看一下功能效果。

效果展示1
效果展示2
動圖展示

參考文章

1. iOS雙波浪動畫解析
2. iOS 動畫-波浪

后記

未完翩迈,待續(xù)~~~

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末持灰,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子帽馋,更是在濱河造成了極大的恐慌,老刑警劉巖比吭,帶你破解...
    沈念sama閱讀 211,123評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绽族,死亡現(xiàn)場離奇詭異,居然都是意外死亡衩藤,警方通過查閱死者的電腦和手機吧慢,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評論 2 384
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來赏表,“玉大人检诗,你說我怎么就攤上這事∑敖耍” “怎么了逢慌?”我有些...
    開封第一講書人閱讀 156,723評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長间狂。 經(jīng)常有香客問我攻泼,道長,這世上最難降的妖魔是什么鉴象? 我笑而不...
    開封第一講書人閱讀 56,357評論 1 283
  • 正文 為了忘掉前任忙菠,我火速辦了婚禮,結(jié)果婚禮上纺弊,老公的妹妹穿的比我還像新娘牛欢。我一直安慰自己,他們只是感情好淆游,可當我...
    茶點故事閱讀 65,412評論 5 384
  • 文/花漫 我一把揭開白布傍睹。 她就那樣靜靜地躺著隔盛,像睡著了一般。 火紅的嫁衣襯著肌膚如雪焰望。 梳的紋絲不亂的頭發(fā)上骚亿,一...
    開封第一講書人閱讀 49,760評論 1 289
  • 那天,我揣著相機與錄音熊赖,去河邊找鬼来屠。 笑死,一個胖子當著我的面吹牛震鹉,可吹牛的內(nèi)容都是我干的俱笛。 我是一名探鬼主播,決...
    沈念sama閱讀 38,904評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼传趾,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了浆兰?” 一聲冷哼從身側(cè)響起榕订,我...
    開封第一講書人閱讀 37,672評論 0 266
  • 序言:老撾萬榮一對情侶失蹤轿腺,失蹤者是張志新(化名)和其女友劉穎憔辫,沒想到半個月后螺垢,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體枉圃,經(jīng)...
    沈念sama閱讀 44,118評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡返劲,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,456評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片犬钢。...
    茶點故事閱讀 38,599評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡歹颓,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出隔节,到底是詐尸還是另有隱情怎诫,我是刑警寧澤蹦误,帶...
    沈念sama閱讀 34,264評論 4 328
  • 正文 年R本政府宣布妹沙,位于F島的核電站玄窝,受9級特大地震影響帽氓,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜典阵,卻給世界環(huán)境...
    茶點故事閱讀 39,857評論 3 312
  • 文/蒙蒙 一奋渔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧壮啊,春花似錦嫉鲸、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至狸眼,卻和暖如春藤树,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背拓萌。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評論 1 264
  • 我被黑心中介騙來泰國打工岁钓, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人微王。 一個月前我還...
    沈念sama閱讀 46,286評論 2 360
  • 正文 我出身青樓屡限,卻偏偏與公主長得像,于是被迫代替她去往敵國和親炕倘。 傳聞我的和親對象是個殘疾皇子钧大,可洞房花燭夜當晚...
    茶點故事閱讀 43,465評論 2 348

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