1.When my application is entering background, because the user push the home button, the animations correctly set in pause, but when i re-open my app, the animations have disappeard.How could i fix it please ?

当我的应用进入了后台,因为用户按了home键,动画被设置成了暂停,但当我重新打开应用时,动画都消失了,我如何修复它?

This is correct and built-in behavior. When you leave the app, all animations are removed from their layers: the system calls removeAllAnimations on every layer.

你的情况是系统默认的行为.当你离开了应用后(比如进入了后台),所有的动画都从他们的layer上移除了:因为系统调用了removeAllAnimations,针对所有的layer.

附录:

UIViewController中的view显示步骤

--------------------------------------------------------------------------------------------------------

进入UIViewController时的情况:

viewDidLoad
viewWillLayoutSubviews
viewDidLayoutSubviews
viewWillAppear
viewWillLayoutSubviews
viewDidLayoutSubviews
viewDidAppear

切换了Controller后的情况(比如你在TabbarController中切换了):

viewWillDisappear
viewDidDisappear

再次切换回来后的情况:
viewWillLayoutSubviews
viewDidLayoutSubviews
viewWillAppear
viewWillLayoutSubviews
viewDidLayoutSubviews
viewDidAppear

退入到后台后的情况:

从后台进入程序时的情况:

viewWillLayoutSubviews
viewDidLayoutSubviews

--------------------------------------------------------------------------------------------------------

为了解决从后台切换回来或者从TabbarController切换回来动画还能继续动画效果,需要如下的解决方案:

- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated]; // 添加通知(处理从后台进来后的情况)
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(addAnimation:)
name:UIApplicationWillEnterForegroundNotification
object:nil]; // 添加动画的代码
}
- (void)addAnimation:(NSNotification *)notificaiton
{
   // 添加动画的代码
}

2.基本动画类型

旋转动画

    /* 旋转 */
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; // 一次完整的动画所持续的时间
animation.duration = .f; // 重复次数
animation.repeatCount = HUGE_VALF; // 起始角度
animation.fromValue = [NSNumber numberWithFloat:0.0]; // 终止角度
animation.toValue = [NSNumber numberWithFloat:- * M_PI]; // 添加动画
[_showView.layer addAnimation:animation
forKey:@"rotate-layer"];

透明度

    // 透明度动画
CABasicAnimation* fadeAnim = [CABasicAnimation animationWithKeyPath:@"opacity"]; // 初始值
fadeAnim.fromValue = [NSNumber numberWithFloat:1.0]; // 结束值
fadeAnim.toValue = [NSNumber numberWithFloat:0.0]; // 动画持续一次的时间
fadeAnim.duration = 1.0; // 开始动画
[_showView.layer addAnimation:fadeAnim forKey:@"opacity"]; // 无论动画是否被中断,其最终的值还是被设置过了
_showView.layer.opacity = 0.0;

borderWidth动画

    // borderWidth动画
CABasicAnimation *borderWidthAnimation = \
[CABasicAnimation animationWithKeyPath:@"borderWidth"]; // 初始值
borderWidthAnimation.fromValue = [NSNumber numberWithFloat:0.0]; // 结束值
borderWidthAnimation.toValue = [NSNumber numberWithFloat:3.0]; // 动画持续一次的时间
borderWidthAnimation.duration = .f; // 开始动画
[_showView.layer addAnimation:borderWidthAnimation forKey:@"borderWidth"]; // 无论动画是否被中断,其最终的值还是被设置过了
_showView.layer.borderWidth = 3.0f;

backgroundColor动画

    // backgroundColor动画
CABasicAnimation *borderWidthAnimation = \
[CABasicAnimation animationWithKeyPath:@"backgroundColor"]; // 初始值
borderWidthAnimation.fromValue = (id)[[UIColor redColor] CGColor]; // 结束值
borderWidthAnimation.toValue = (id)[[UIColor greenColor] CGColor]; // 动画持续一次的时间
borderWidthAnimation.duration = .f; // 开始动画
[_showView.layer addAnimation:borderWidthAnimation forKey:@"borderWidth"]; // 无论动画是否被中断,其最终的值还是被设置过了
_showView.layer.backgroundColor = [[UIColor greenColor] CGColor];

borderColor动画

    // borderColor动画
CABasicAnimation *borderWidthAnimation = \
[CABasicAnimation animationWithKeyPath:@"borderColor"]; // 初始值
borderWidthAnimation.fromValue = (id)[[UIColor redColor] CGColor]; // 结束值
borderWidthAnimation.toValue = (id)[[UIColor greenColor] CGColor]; // 动画持续一次的时间
borderWidthAnimation.duration = .f; // 开始动画
[_showView.layer addAnimation:borderWidthAnimation forKey:@"borderWidth"]; // 无论动画是否被中断,其最终的值还是被设置过了
_showView.layer.backgroundColor = [[UIColor greenColor] CGColor];

bounds.size.height动画

    // bounds.size.height动画
CABasicAnimation *borderWidthAnimation = \
[CABasicAnimation animationWithKeyPath:@"bounds.size.height"]; // 初始值
borderWidthAnimation.fromValue = [NSNumber numberWithFloat:100.0f]; // 结束值
borderWidthAnimation.toValue = [NSNumber numberWithFloat:.f]; // 动画持续一次的时间
borderWidthAnimation.duration = 0.5f; // 选择一种动画的时间轴方式
borderWidthAnimation.timingFunction = \
[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]; // ??
borderWidthAnimation.fillMode = kCAFillModeForwards; // 开始动画
[_showView.layer addAnimation:borderWidthAnimation forKey:@"bounds.size.height"]; // 无论动画是否被中断,其最终的值还是被设置过了
_showView.layer.bounds = CGRectMake(self.view.center.x, self.view.center.y, , .f);

contents动画

    // 初始化一张图片
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(, , , )];
imageView.image = [UIImage imageNamed:@""]; // 添加进view中
[self.view addSubview:imageView]; // contents动画
CABasicAnimation *crossFade = [CABasicAnimation animationWithKeyPath:@"contents"]; crossFade.duration = 2.0;
crossFade.fromValue = (id)([UIImage imageNamed:@""].CGImage);
crossFade.toValue = (id)([UIImage imageNamed:@""].CGImage); [imageView.layer addAnimation:crossFade forKey:@"animateContents"]; // 进行最后的设置
imageView.image = [UIImage imageNamed:@""];

圆角动画

    // 初始化一张图片
UIView *showView = [[UIView alloc] initWithFrame:CGRectMake(, , , )];
showView.backgroundColor = [UIColor redColor];
[self.view addSubview:showView]; // 圆角动画
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"cornerRadius"]; animation.fromValue = [NSNumber numberWithFloat:.f];
animation.toValue = [NSNumber numberWithFloat:.f];
animation.duration = 1.0;
[showView.layer setCornerRadius:.f]; // 最后设置
[showView.layer addAnimation:animation forKey:@"cornerRadius"];

支持的动画太多了,以下是苹果的官方文档中提出的支持的动画:

Property

Default animation

anchorPoint

Uses the default implied CABasicAnimation object, described in Table B-2.

backgroundColor

Uses the default implied CABasicAnimation object, described in Table B-2.

backgroundFilters

Uses the default implied CATransition object, described in Table B-3. Sub-properties of the filters are animated using the default implied CABasicAnimation object, described in Table B-2.

borderColor

Uses the default implied CABasicAnimation object, described in Table B-2.

borderWidth

Uses the default implied CABasicAnimation object, described in Table B-2.

bounds

Uses the default implied CABasicAnimation object, described in Table B-2.

compositingFilter

Uses the default implied CATransition object, described in Table B-3. Sub-properties of the filters are animated using the default implied CABasicAnimation object, described in Table B-2.

contents

Uses the default implied CABasicAnimation object, described in Table B-2.

contentsRect

Uses the default implied CABasicAnimation object, described in Table B-2.

cornerRadius

Uses the default implied CABasicAnimation object, described in Table B-2.

doubleSided

There is no default implied animation.

filters

Uses the default implied CABasicAnimation object, described in Table B-2. Sub-properties of the filters are animated using the default implied CABasicAnimation object, described in Table B-2.

frame

This property is not animatable. You can achieve the same results by animating the bounds and position properties.

hidden

Uses the default implied CABasicAnimation object, described in Table B-2.

mask

Uses the default implied CABasicAnimation object, described in Table B-2.

masksToBounds

Uses the default implied CABasicAnimation object, described in Table B-2.

opacity

Uses the default implied CABasicAnimation object, described in Table B-2.

position

Uses the default implied CABasicAnimation object, described in Table B-2.

shadowColor

Uses the default implied CABasicAnimation object, described in Table B-2.

shadowOffset

Uses the default implied CABasicAnimation object, described in Table B-2.

shadowOpacity

Uses the default implied CABasicAnimation object, described in Table B-2.

shadowPath

Uses the default implied CABasicAnimation object, described in Table B-2.

shadowRadius

Uses the default implied CABasicAnimation object, described in Table B-2.

sublayers

Uses the default implied CABasicAnimation object, described in Table B-2.

sublayerTransform

Uses the default implied CABasicAnimation object, described in Table B-2.

transform

Uses the default implied CABasicAnimation object, described in Table B-2.

zPosition

Uses the default implied CABasicAnimation object, described in Table B-2.

http://www.cnblogs.com/pengyingh/articles/2379631.html

iOS动画相关(持续更新)的更多相关文章

  1. 移动端H5制作安卓和IOS的坑 持续更新...

    移动端H5制作安卓和IOS的坑 持续更新... 前言:最近参加公司的H5页面创意竞赛,又遇到不少页面在不同系统上的坑.踩坑之余,觉得很多之前遇到的知识点都忘了,索性开一篇博文,把这些坑都统一归纳起来, ...

  2. 爆炸!iOS资源大礼包(持续更新...)

    今天为大家整理了一些关于iOS学习的干货,献给正在奋斗的你们,首先声明一下,在整理的过程中参考了大量的博客和文章,知识的分享终究会增值,在此表示感谢,希望这篇文章给大家带来帮助. 基础部分: C语言教 ...

  3. <精华篇>:iOS视频大全-持续更新

    注意:新浪微博分享的资料和简书分享的资料,略有不同! 小码哥swift3.0版 斗鱼项目视频:点击下载  iOS开发25个项目实战:点击下载 2016PHP全套下载:点击下载  黑马刀哥iOS视频精选 ...

  4. iOS Debug心得 (持续更新)

    最近在维护一个内部比较混乱的APP,Debug的时候遇到很多比较痛苦的地方, 因此做一个Debug记录,对以后的开发会有比较大的帮助: 这样,在开发新项目的时候就可以争取把一些BUG扼杀在襁褓中. & ...

  5. iOS开发资源(持续更新)

    vm10虚拟机安装Mac OS X10.10教程 马上着手开发 iOS 应用程序 (Start Developing iOS Apps Today) Xcode使用教程详细讲解 (上) Xcode使用 ...

  6. iOS 常用三方(持续更新)

    iOS 常用三方 1.ZWMSegmentController 分页控制器 https://github.com/weiming4219/ZWMSegmentController

  7. css3布局相关(持续更新)

    1三栏布局,两边定宽,中间自适应 2让文字位于div元素的正中央 3不管浏览器窗口如何变化,让一张图片始终显示在浏览器正中央.

  8. JS 字符串处理相关(持续更新)

    一.JS判断字符串中是否包含某个字符串 indexOf() indexOf()方法可返回某个指定的字符串值在字符串中首次出现的位置.如果要检索的字符串值没有出现,则该方法返回 -1. var str ...

  9. 常用的iOS 宏定义 (持续更新中)

    1.System Versioning Preprocessor Macros #define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevic ...

随机推荐

  1. HTML标签列表总览

    超文本标记语言(简称:HTML)标记标签通常被称为HTML标签,HTML标签是HTML语言中最基本的单位,HTML标签是HTML(标准通用标记语言下的一个应用)最重要的组成部分.HTML标签的大小写无 ...

  2. 聊一聊FE面试那些事【原创】

    最近公司由于业务的扩展.技术的延伸需要招一批有能力的小伙伴加入,而我有幸担任"技术面试官"的角色前前后后面试了不下50多位候选人,如同见证了50多位前端开发者的经历一样,在面试的过 ...

  3. 1391: [Ceoi2008]order

    有N个工作,M种机器,每种机器你可以租或者买过来. 每个工作包括若干道工序,每道工序需要某种机器来完成,你可以通过购买或租用机器来完成. 现在给出这些参数,求最大利润 Input 第一行给出 N,M( ...

  4. Data时间格式化

    //时间戳转时间 function timeStamp2String(time) { var datetime = new Date(); datetime.setTime(time); var ye ...

  5. OneDrive开发入门

    OneDrive API提供了对存储在OneDrive上文件的访问能力,大多数API都遵循REST模式,少部分的API可以通过简单的函数来调用 在使用OneDrive API之前要先了解两个简单的概念 ...

  6. Python时间日期格式化之time与datetime模块总结

    1 引言 在实际开发过程中,我们经常会用到日期或者时间,那么在Python中我们怎么获取时间,以及如何将时间转换为我们需要的格式呢?在之前的开发中,也曾遇到time.datetime等模块下的不同函数 ...

  7. C# 简单读写ini文件帮助类 INIHelp

    软件里需要读取一些初始化信息, 决定用ini来做,简单方便. 于是查了一写代码,自己写了一个帮助类. INI文件格式是某些平台或软件上的配置文件的非正式标准, 以节(section)和键(key)构成 ...

  8. ubuntu18.04 安装Navicat 解决字体方框问题

    前景 最近带着看一点数据库的知识,装一下navicat,就是这个玩意儿,在我编码毫无问题的情况下,这个软件上却显示各种乱码 环境 ubuntu 18.04 navicat 12(最新版) mysql ...

  9. android 注册广播接受者

    韩梦飞沙  韩亚飞  313134555@qq.com  yue31313  han_meng_fei_sha 动态注册 静态注册 动态注册是 通过java代码,注册. 静态注册 是xml清单文件中 ...

  10. Java设计模式GOF之工厂模式

    一.工厂模式(Factory) 1.实现了创建者和调用者的分离 2.应用场景 ①JDK中 Calendar 的 getInstance(): ②JDBC 的 Connection 对象的获取: ③Hi ...