博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 简单动画效果
阅读量:4114 次
发布时间:2019-05-25

本文共 2749 字,大约阅读时间需要 9 分钟。

1、最简单,最实用,最常用的[移动动画]

//移动一个view

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

+(void)MoveView:(UIView *)view To:(CGRect)frame During:(float)time{

// 动画开始

[UIView beginAnimations:nil context:nil];

// 动画时间曲线 EaseInOut效果

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; 

// 动画时间

[UIView setAnimationDuration:time];

view.frame = frame;

// 动画结束(或者用提交也不错)

[UIView commitAnimations];

}

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

适用范围:

常常出现在ipad项目中,当用户点击一个图片,或者一条资讯,你将弹出一个详细页面[detailview],将起始frame初始化为cgrectmake(self.view.frame.size.width/2,self.view.size.height/2, 0, 0),结束位置[frame] ,常用的动画间隔时间0.4f-0.6f。

[AnimtionTool MoveView:detailview To:frame During:0.5f];

效果,页面中间将从小到大显示一个view[detailview]

通常这个View会是放大到全屏,或者半屏大小,然后再点击后,自动消失。所以这个View会被自义成一个新的View,然后在接收点击事件后,调用[self removeFromParentView];的方法


2、渐渐显示一个view,需要在调用此方法的类中重写此方法

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

/*

 - (void)onAnimationComplete:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context {

      if ([animationID isEqualToString: SHOW_VIEW]) {

         //do something

      }  else if ([animationID isEqualToString:HIDDEN_VIEW]) {

         //do something

      }

 }

 */

+(void)ShowView:(UIView *)view To:(CGRect)frame During:(float)time delegate:(id)delegate;{

[UIView beginAnimations:SHOW_VIEW context:nil];

[UIView setAnimationDuration:time];

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; 

if(delegate !=nil &&[delegate respondsToSelector:@selector(onAnimationComplete:finished:context:)]){

[UIView setAnimationDidStopSelector:@selector(onAnimationComplete:finished:context:)];

[UIView setAnimationDelegate:delegate];

}

view.hidden = NO;

view.layer.opacity = 1.0;

view.frame = frame;

[UIView commitAnimations];

}

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

3、渐渐隐藏一个view

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

+(void)HiddenView:(UIView *)view To:(CGRect)frame During:(float)time delegate:(id)delegate{

[UIView beginAnimations:HIDDEN_VIEW context:nil];

[UIView setAnimationDuration:time];

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; 

if(delegate !=nil &&[delegate respondsToSelector:@selector(onAnimationComplete:finished:context:)]){

[UIView setAnimationDidStopSelector:@selector(onAnimationComplete:finished:context:)];

[UIView setAnimationDelegate:delegate];

}

view.frame = frame;

view.layer.opacity = 0.0;

[UIView commitAnimations];

}

转载地址:http://wewpi.baihongyu.com/

你可能感兴趣的文章
数据结构之二叉树
查看>>
二叉树非递归遍历算法思悟
查看>>
红黑树算法思悟
查看>>
从山寨Spring中学习Spring IOC原理-自动装配注解
查看>>
实例区别BeanFactory和FactoryBean
查看>>
Spring后置处理器BeanPostProcessor的应用
查看>>
Spring框架的ImportSelector到底可以干嘛
查看>>
Mysql中下划线问题
查看>>
微信小程序中使用npm过程中提示:npm WARN saveError ENOENT: no such file or directory
查看>>
Xcode 11 报错,提示libstdc++.6 缺失,解决方案
查看>>
idea的安装以及简单使用
查看>>
Windows mysql 安装
查看>>
python循环语句与C语言的区别
查看>>
Vue项目中使用img图片和background背景图的使用方法
查看>>
vue 项目中图片选择路径位置static 或 assets区别
查看>>
vue项目打包后无法运行报错空白页面
查看>>
Vue 解决部署到服务器后或者build之后Element UI图标不显示问题(404错误)
查看>>
element-ui全局自定义主题
查看>>
facebook库runtime.js
查看>>
vue2.* 中 使用socket.io
查看>>