91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS如何自定義UIButton點擊動畫特效

發布時間:2021-09-27 14:31:30 來源:億速云 閱讀:125 作者:小新 欄目:編程語言

這篇文章主要介紹了iOS如何自定義UIButton點擊動畫特效,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

代碼:

ViewController:

#import <UIKit/UIKit.h>@interface ViewController : UIViewController@end#import "ViewController.h"#import "HWButton.h"#define mainW [UIScreen mainScreen].bounds.size.width#define mainH [UIScreen mainScreen].bounds.size.height@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {  [super viewDidLoad];  self.view.backgroundColor = [UIColor blackColor];  //創建控件  [self creatButton];}- (void)creatButton{  HWButton *button = [[HWButton alloc] initWithFrame:CGRectMake(mainW * 0.5 - 60, mainH - 100, 120, 72) maxLeft:100 maxRight:100 maxHeight:300];  [button setImage:[UIImage imageNamed:@"button"] forState:UIControlStateNormal];  button.images = @[[UIImage imageNamed:@"Circle 1"], [UIImage imageNamed:@"Circle 2"], [UIImage imageNamed:@"Circle 3"], [UIImage imageNamed:@"Hero"]];  button.duration = 10;  [button addTarget:self action:@selector(buttonOnClick:) forControlEvents:UIControlEventTouchUpInside];  [self.view addSubview:button];}- (void)buttonOnClick:(HWButton *)btn{  [btn generateBubbleInRandom];}@end

HWButton:

#import <UIKit/UIKit.h>@interface HWButton : UIButton@property (nonatomic, assign) CGFloat maxLeft;@property (nonatomic, assign) CGFloat maxRight;@property (nonatomic, assign) CGFloat maxHeight;@property (nonatomic, assign) CGFloat duration;@property (nonatomic, strong) NSArray *images;- (instancetype)initWithFrame:(CGRect)frame maxLeft:(CGFloat)maxLeft maxRight:(CGFloat)maxRight maxHeight:(CGFloat)maxHeight;- (void)generateBubbleWithImage:(UIImage *)image;- (void)generateBubbleInRandom;@end#import "HWButton.h"@implementation HWButton{  CGPoint _startPoint;  CGFloat _maxWidth;  NSMutableSet *_recyclePool;  NSMutableArray *_array;}- (instancetype)initWithFrame:(CGRect)frame maxLeft:(CGFloat)maxLeft maxRight:(CGFloat)maxRight maxHeight:(CGFloat)maxHeight{  self = [super initWithFrame:frame];  if (self) {    _maxHeight = maxHeight;    _maxLeft  = maxLeft;    _maxRight = maxRight;    [self initData];  }  return self;}- (id)initWithCoder:(NSCoder *)aDecoder{  self = [super initWithCoder:aDecoder];  if (self) {    [self initData];  }  return self;}- (void)initData{  _array = @[].mutableCopy;  _recyclePool = [NSMutableSet set];}- (void)generateBubbleInRandom{  CALayer *layer;  if (_recyclePool.count > 0) {    layer = [_recyclePool anyObject];    [_recyclePool removeObject:layer];  }else {    UIImage *image = self.images[arc4random() % self.images.count];    layer = [self createLayerWithImage:image];  }  [self.layer addSublayer:layer];  [self generateBubbleWithCAlayer:layer];}- (void)generateBubbleWithImage:(UIImage *)image{  CALayer *layer = [self createLayerWithImage:image];  [self.layer addSublayer:layer];  [self generateBubbleWithCAlayer:layer];}- (void)generateBubbleWithCAlayer:(CALayer *)layer{  _maxWidth = _maxLeft + _maxRight + self.bounds.size.width;  _startPoint = CGPointMake(self.frame.size.width / 2, 0);  CGPoint endPoint = CGPointMake(_maxWidth * [self randomFloat] - _maxLeft, -_maxHeight);  CGPoint controlPoint1 = CGPointMake(_maxWidth * [self randomFloat] - _maxLeft, -_maxHeight * 0.2);  CGPoint controlPoint2 = CGPointMake(_maxWidth * [self randomFloat] - _maxLeft, -_maxHeight * 0.6);  CGMutablePathRef curvedPath = CGPathCreateMutable();  CGPathMoveToPoint(curvedPath, NULL, _startPoint.x, _startPoint.y);  CGPathAddCurveToPoint(curvedPath, NULL, controlPoint1.x, controlPoint1.y, controlPoint2.x, controlPoint2.y, endPoint.x, endPoint.y);  CAKeyframeAnimation *keyFrame = [CAKeyframeAnimation animation];  keyFrame.keyPath = @"position";  keyFrame.path = CFAutorelease(curvedPath);  keyFrame.duration = self.duration;  keyFrame.calculationMode = kCAAnimationPaced;  [layer addAnimation:keyFrame forKey:@"keyframe"];  CABasicAnimation *scale = [CABasicAnimation animation];  scale.keyPath = @"transform.scale";  scale.toValue = @1;  scale.fromValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(0.1, 0.1, 0.1)];  scale.duration = 0.5;  CABasicAnimation *alpha = [CABasicAnimation animation];  alpha.keyPath = @"opacity";  alpha.fromValue = @1;  alpha.toValue = @0.1;  alpha.duration = self.duration * 0.4;  alpha.beginTime = self.duration - alpha.duration;  CAAnimationGroup *group = [CAAnimationGroup animation];  group.animations = @[keyFrame, scale, alpha];  group.duration = self.duration;  group.delegate = self;  group.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];  group.fillMode = kCAFillModeForwards;  group.removedOnCompletion = NO;  [layer addAnimation:group forKey:@"group"];  [_array addObject:layer];}- (CGFloat)randomFloat{  return (arc4random() % 100)/100.0f;}- (CALayer *)createLayerWithImage:(UIImage *)image{  CGFloat scale = [UIScreen mainScreen].scale;  CALayer *layer = [CALayer layer];  layer.frame  = CGRectMake(0, 0, image.size.width / scale, image.size.height / scale);  layer.contents = (__bridge id)image.CGImage;;  return layer;}- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{  if (flag) {    CALayer *layer = [_array firstObject];    [layer removeAllAnimations];    [layer removeFromSuperlayer];    [_array removeObject:layer];    [_recyclePool addObject:layer];  }}@end

感謝你能夠認真閱讀完這篇文章,希望小編分享的“iOS如何自定義UIButton點擊動畫特效”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

会东县| 高淳县| 布尔津县| 永兴县| 营口市| 双城市| 当阳市| 东安县| 孟州市| 大连市| 米林县| 辰溪县| 柏乡县| 鹤山市| 大厂| 罗甸县| 阜新市| 呼图壁县| 岱山县| 重庆市| 建德市| 枣庄市| 太白县| 墨脱县| 久治县| 吉木萨尔县| 林口县| 布拖县| 若尔盖县| 泸定县| 钦州市| 上林县| 重庆市| 措美县| 永丰县| 灯塔市| 康马县| 六安市| 观塘区| 永胜县| 杭锦旗|