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

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

服务器之家 - 编程语言 - IOS - iOS开发中常用的各种动画、页面切面效果

iOS开发中常用的各种动画、页面切面效果

2021-01-15 16:06jerrylsxu IOS

这篇文章主要介绍了iOS开发中常用的各种动画、页面切面效果 的相关资料,需要的朋友可以参考下

今天主要用到的动画类是calayer下的catransition至于各种动画类中如何继承的在这也不做赘述,网上的资料是一抓一大把。好废话少说切入今天的正题。

  一.封装动画方法

    1.用catransition实现动画的封装方法如下,每句代码是何意思,请看注释之。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma catransition动画实现
- (void) transitionwithtype:(nsstring *) type withsubtype:(nsstring *) subtype forview : (uiview *) view
{
//创建catransition对象
catransition *animation = [catransition animation];
//设置运动时间
animation.duration = duration;
//设置运动type
animation.type = type;
if (subtype != nil) {
//设置子类
animation.subtype = subtype;
}
//设置运动速度
animation.timingfunction = uiviewanimationoptioncurveeaseinout;
[view.layer addanimation:animation forkey:@"animation"];
}

    代码说明:

      catransition常用的属性如下:

        duration:设置动画时间

        type:稍后下面会详细的介绍运动类型

        subtype:和type匹配使用,指定运动的方向,下面也会详细介绍

        timingfunction :动画的运动轨迹,用于变化起点和终点之间的插值计算,形象点说它决定了动画运行的节奏,比如是

                 均匀变化(相同时间变化量相同)还是先快后慢,先慢后快还是先慢再快再慢.    

               * 动画的开始与结束的快慢,有五个预置分别为(下同):

                   * kcamediatimingfunctionlinear 线性,即匀速

                   * kcamediatimingfunctioneasein 先慢后快

                   * kcamediatimingfunctioneaseout 先快后慢

                  * kcamediatimingfunctioneaseineaseout 先慢后快再慢

                  * kcamediatimingfunctiondefault 实际效果是动画中间比较快.

   2.用uiview的block回调实现动画的代码封装 

?
1
2
3
4
5
6
7
8
#pragma uiview实现动画
- (void) animationwithview : (uiview *)view withanimationtransition : (uiviewanimationtransition) transition
{
[uiview animatewithduration:duration animations:^{
[uiview setanimationcurve:uiviewanimationcurveeaseinout];
[uiview setanimationtransition:transition forview:view cache:yes];
}];
}

    3.改变view的背景图,便于切换时观察

?
1
2
3
4
5
#pragma 给view添加背景图
-(void)addbgimagewithimagename:(nsstring *) imagename
{
self.view.backgroundcolor = [uicolor colorwithpatternimage:[uiimage imagenamed:imagename]];
}

  二.调用上面的方法实现我们想要的动画

    1.我们在view上添加多个button,给不同的button设置不同的tag值,然后再viewcontroller中绑定同一个方法,点击不同的button实现不同的页面切换效果。storyboard上的控件效果如下图所示:

iOS开发中常用的各种动画、页面切面效果

    2.下面我们就开始编写点击button要回调的方法

      (1).定义枚举来标示按钮所对应的动画类型,代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
typedef enum : nsuinteger {
fade = , //淡入淡出
push, //推挤
reveal, //揭开
movein, //覆盖
cube, //立方体
suckeffect, //吮吸
oglflip, //翻转
rippleeffect, //波纹
pagecurl, //翻页
pageuncurl, //反翻页
camerairishollowopen, //开镜头
camerairishollowclose, //关镜头
curldown, //下翻页
curlup, //上翻页
flipfromleft, //左翻转
flipfromright, //右翻转
} animationtype;

    (2),获取button的tag值:

?
1
2
uibutton *button = sender;
animationtype animationtype = button.tag;

    (3).每次点击button都改变subtype的值,包括上,左,下,右

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
nsstring *subtypestring;
switch (_subtype) {
case :
subtypestring = kcatransitionfromleft;
break;
case :
subtypestring = kcatransitionfrombottom;
break;
case :
subtypestring = kcatransitionfromright;
break;
case :
subtypestring = kcatransitionfromtop;
break;
default:
break;
}
_subtype += ;
if (_subtype > ) {
_subtype = ;
}

    (4),通过switch结合上边的枚举来判断是那个按钮点击的

?
1
2
3
4
switch (animationtype)
{
//各种case,此处代码下面会给出
}

   3.调用我们封装的运动方法,来实现动画效果

    (1),淡化效果

?
1
2
3
case fade:
[self transitionwithtype:kcatransitionfade withsubtype:subtypestring forview:self.view];
break; 

    (2).push效果

?
1
2
3
case push:
[self transitionwithtype:kcatransitionpush withsubtype:subtypestring forview:self.view];
break;

     效果如下:

 iOS开发中常用的各种动画、页面切面效果

    (3).揭开效果:

?
1
2
3
case reveal:
[self transitionwithtype:kcatransitionreveal withsubtype:subtypestring forview:self.view];
break;

    效果图如下:

  iOS开发中常用的各种动画、页面切面效果

    (4).覆盖效果

?
1
2
3
case movein:
[self transitionwithtype:kcatransitionmovein withsubtype:subtypestring forview:self.view];
break;

      效果图如下:

iOS开发中常用的各种动画、页面切面效果

   (5).立方体效果

?
1
2
3
case cube:
[self transitionwithtype:@"cube" withsubtype:subtypestring forview:self.view];
break;

    效果如下:

   iOS开发中常用的各种动画、页面切面效果

    (6).吮吸效果

?
1
2
3
case suckeffect:
[self transitionwithtype:@"suckeffect" withsubtype:subtypestring forview:self.view];
break;

      效果如下:

iOS开发中常用的各种动画、页面切面效果

    (7).翻转效果

?
1
2
3
case oglflip:
[self transitionwithtype:@"oglflip" withsubtype:subtypestring forview:self.view];
break;

    效果图如下:

iOS开发中常用的各种动画、页面切面效果

    8.波纹效果

?
1
2
3
case rippleeffect:
[self transitionwithtype:@"rippleeffect" withsubtype:subtypestring forview:self.view];
break;  

 iOS开发中常用的各种动画、页面切面效果

    (9).翻页和反翻页效果

?
1
2
3
4
5
6
case pagecurl:
[self transitionwithtype:@"pagecurl" withsubtype:subtypestring forview:self.view];
break;
case pageuncurl:
[self transitionwithtype:@"pageuncurl" withsubtype:subtypestring forview:self.view];
break;

iOS开发中常用的各种动画、页面切面效果  iOS开发中常用的各种动画、页面切面效果

    (10).相机打开效果

?
1
2
3
4
5
6
case camerairishollowopen:
[self transitionwithtype:@"camerairishollowopen" withsubtype:subtypestring forview:self.view];
break;
case camerairishollowclose:
[self transitionwithtype:@"camerairishollowclose" withsubtype:subtypestring forview:self.view];
break;

iOS开发中常用的各种动画、页面切面效果

  (11),调用上面封装的第二个动画方法

?
1
2
3
4
5
6
7
8
9
10
11
12
case curldown:
[self animationwithview:self.view withanimationtransition:uiviewanimationtransitioncurldown];
break;
case curlup:
[self animationwithview:self.view withanimationtransition:uiviewanimationtransitioncurlup];
break;
case flipfromleft:
[self animationwithview:self.view withanimationtransition:uiviewanimationtransitionflipfromleft];
break;
case flipfromright:
[self animationwithview:self.view withanimationtransition:uiviewanimationtransitionflipfromright];
break;

以上内容是针对ios开发中常用的各种动画、页面切面效果的相关介绍,希望对大家有所帮助!

延伸 · 阅读

精彩推荐
  • IOSiOS布局渲染之UIView方法的调用时机详解

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

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

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

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

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

    一片枫叶4662020-12-25
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

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

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

    J_Kang3862021-04-22
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

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

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

    xiari5772021-06-01
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

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

    SimpleWorld11022021-01-28
  • IOS关于iOS自适应cell行高的那些事儿

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

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

    daisy6092021-05-17
  • IOSiOS通过逆向理解Block的内存模型

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

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

    Swiftyper12832021-03-03
  • IOSIOS开发之字典转字符串的实例详解

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

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

    苦练内功5832021-04-01