日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

将CAGradientLayer当做mask使用

發(fā)布時間:2025/3/14 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 将CAGradientLayer当做mask使用 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

將CAGradientLayer當做mask使用

?

效果

?

源碼

https://github.com/YouXianMing/Animations

// // CAGradientView.h // MaskView // // Created by YouXianMing on 16/2/15. // Copyright ? 2016年 YouXianMing. All rights reserved. // #import <UIKit/UIKit.h>@interface CAGradientView : UIView/*** CAGradientLayer's colors.*/ @property (nonatomic, strong) NSArray *colors;/*** CAGradientLayer's locations.*/ @property (nonatomic, strong) NSArray *locations;/*** CAGradientLayer's startPoint.*/ @property (nonatomic) CGPoint startPoint;/*** CAGradientLayer's endPoint.*/ @property (nonatomic) CGPoint endPoint;@end // // CAGradientView.m // MaskView // // Created by YouXianMing on 16/2/15. // Copyright ? 2016年 YouXianMing. All rights reserved. // #import "CAGradientView.h"@interface CAGradientView () {CAGradientLayer *_gradientLayer; }@end@implementation CAGradientView+ (Class)layerClass {return [CAGradientLayer class]; }- (instancetype)initWithFrame:(CGRect)frame {if (self = [super initWithFrame:frame]) {_gradientLayer = (CAGradientLayer *)self.layer;}return self; }#pragma mark - 重寫setter,getter方法@synthesize colors = _colors;- (void)setColors:(NSArray *)colors {_colors = colors;// 將color轉換成CGColorNSMutableArray *cgColors = [NSMutableArray array];for (UIColor *tmp in colors) {id cgColor = (__bridge id)tmp.CGColor;[cgColors addObject:cgColor];}// 設置Colors_gradientLayer.colors = cgColors; }- (NSArray *)colors {return _colors; }@synthesize locations = _locations;- (void)setLocations:(NSArray *)locations {_locations = locations;_gradientLayer.locations = _locations; }- (NSArray *)locations {return _locations; }@synthesize startPoint = _startPoint;- (void)setStartPoint:(CGPoint)startPoint {_startPoint = startPoint;_gradientLayer.startPoint = startPoint; }- (CGPoint)startPoint {return _startPoint; }@synthesize endPoint = _endPoint;- (void)setEndPoint:(CGPoint)endPoint {_endPoint = endPoint;_gradientLayer.endPoint = endPoint; }- (CGPoint)endPoint {return _endPoint; }@end

?

細節(jié)

?

轉載于:https://www.cnblogs.com/YouXianMing/p/5193840.html

總結

以上是生活随笔為你收集整理的将CAGradientLayer当做mask使用的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。