服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS利用CALayer实现动画加载的效果

iOS利用CALayer实现动画加载的效果

2021-02-05 15:29iOS开发网 IOS

网上关于动画加载的效果大多每一个圆圈都是使用UIView,因为这种容易控制,但是这里用的是CALayer,文中给出了详细的实现示例代码,相信会对大家的学习和理解很有帮助,感兴趣的朋友们下面来一起看看吧。

首先来看看效果图

iOS利用CALayer实现动画加载的效果

实现过程如下

控制器调用就一句代码:

?
1
[self showloadinginview:self.view];

方便控制器如此调用,就要为控制器添加一个分类

.h文件

?
1
2
3
4
5
6
7
8
9
#import <uikit/uikit.h>
#import "gqcircleloadview.h"
@interface uiviewcontroller (gqcircleload)
//显示动画
- (void)showloadinginview:(uiview*)view;
//隐藏动画
- (void)hideload;
@property (nonatomic,strong) gqcircleloadview *loadingview;
@end

.m文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#import "uiviewcontroller+gqcircleload.h"
#import <objc/runtime.h>
@implementation uiviewcontroller (gqcircleload)
- (gqcircleloadview*)loadingview
{
 return objc_getassociatedobject(self, @"loadingview");
}
- (void)setloadingview:(gqcircleloadview*)loadingview
{
 objc_setassociatedobject(self, @"loadingview", loadingview, objc_association_retain_nonatomic);
}
- (void)showloadinginview:(uiview*)view{
 if (self.loadingview == nil) {
  self.loadingview = [[gqcircleloadview alloc]init];
 }
 if (view) {
  [view addsubview:self.loadingview];
  self.loadingview.frame = view.bounds;
 }else{
  uiwindow *appkeywindow = [uiapplication sharedapplication].keywindow;
  [appkeywindow addsubview:self.loadingview];
  self.loadingview.frame = appkeywindow.bounds;
 }
}
- (void)hideload{
 [self.loadingview removefromsuperview];
}
@end

接下来就是gqcircleloadview继承uiview,里面通过drawrect画出圆圈,并且动画的实现

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#import "gqcircleloadview.h"
#define window_width [[uiscreen mainscreen] bounds].size.width
#define window_height [[uiscreen mainscreen] bounds].size.height
static nsinteger circlecount = 3;
static cgfloat cornerradius = 10;
static cgfloat magin = 15;
@interface gqcircleloadview()<caanimationdelegate>
@property (nonatomic, strong) nsmutablearray *layerarr;
@end
 
@implementation gqcircleloadview
- (instancetype)initwithframe:(cgrect)frame{
 if (self = [super initwithframe:frame]) {
  self.backgroundcolor = [uicolor clearcolor];
 }
 return self;
}
// 画圆
- (void)drawcircles{
 for (nsinteger i = 0; i < circlecount; ++i) {
  cgfloat x = (window_width - (cornerradius*2) * circlecount - magin * (circlecount-1)) / 2.0 + i * (cornerradius*2 + magin) + cornerradius;
  cgrect rect = cgrectmake(-cornerradius, -cornerradius , 2*cornerradius, 2*cornerradius);
  uibezierpath *beizpath=[uibezierpath bezierpathwithroundedrect:rect cornerradius:cornerradius];
  cashapelayer *layer=[cashapelayer layer];
  layer.path=beizpath.cgpath;
  layer.fillcolor=[uicolor graycolor].cgcolor;
  layer.position = cgpointmake(x, self.frame.size.height * 0.5);
  [self.layer addsublayer:layer];
 
  [self.layerarr addobject:layer];
 }
 
 [self drawanimation:self.layerarr[0]];
 
 // 旋转(可打开试试效果)
// cabasicanimation* rotationanimation = [cabasicanimation animationwithkeypath:@"transform.rotation.y"];
// rotationanimation.tovalue = [nsnumber numberwithfloat: - m_pi * 2.0 ];
// rotationanimation.duration = 1;
// rotationanimation.cumulative = yes;
// rotationanimation.repeatcount = maxfloat;
// [self.layer addanimation:rotationanimation forkey:@"rotationanimation"];
}
 
// 动画实现
- (void)drawanimation:(calayer*)layer {
 cabasicanimation *scaleup = [cabasicanimation animationwithkeypath:@"transform.scale"];
 scaleup.fromvalue = @1;
 scaleup.tovalue = @1.5;
 scaleup.duration = 0.25;
 scaleup.timingfunction = [camediatimingfunction functionwithname:kcamediatimingfunctioneaseout];
 
 cabasicanimation *scaledown = [cabasicanimation animationwithkeypath:@"transform.scale"];
 scaledown.begintime = scaleup.duration;
 scaledown.fromvalue = @1.5;
 scaledown.tovalue = @1;
 scaledown.duration = 0.25;
 scaledown.timingfunction = [camediatimingfunction functionwithname:kcamediatimingfunctioneaseout];
 
 caanimationgroup *group = [[caanimationgroup alloc] init];
 group.animations = @[scaleup, scaledown];
 group.repeatcount = 0;
 group.duration = scaleup.duration + scaledown.duration;
 group.delegate = self;
 [layer addanimation:group forkey:@"groupanimation"];
 
}
#pragma mark - caanimationdelegate
- (void)animationdidstart:(caanimation *)anim
{
 if ([anim iskindofclass:caanimationgroup.class]) {
  caanimationgroup *animation = (caanimationgroup *)anim;
 
  [self.layerarr enumerateobjectsusingblock:^(cashapelayer *obj, nsuinteger idx, bool * _nonnull stop) {
 
   caanimationgroup *a0 = (caanimationgroup *)[obj animationforkey:@"groupanimation"];
   if (a0 && a0 == animation) {
    cashapelayer *nextlayer = self.layerarr[(idx+1)>=self.layerarr.count?0:(idx+1)];
    [self performselector:@selector(drawanimation:) withobject:nextlayer afterdelay:0.25];
    *stop = yes;
   }
  }];
 }
}
- (void)drawrect:(cgrect)rect{
 [super drawrect:rect];
 [self drawcircles];
}
- (nsmutablearray *)layerarr{
 if (_layerarr == nil) {
  _layerarr = [[nsmutablearray alloc] init];
 }
 return _layerarr;
}
@end

demo就不上传了,总共四个文件代码已经全贴上了!

总结

以上就是这篇文章的全部内容了,有兴趣可以试试打开上面的旋转的动画代码,关闭旋转代码,进一步修改也可实现出qq邮箱的下拉刷新效果,希望这篇文章的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。

延伸 · 阅读

精彩推荐
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01