iOS页面切换动画实现方式。
iOS页面切换动画实现方式。
1.使用UIView animateWithDuration:animations:completion方法
Java代码
- [UIView animateWithDuration:0.2f animations:^{
- detail.view.frame = CGRectMake(0, 0, detail.view.frame.size.width, detail.view.frame.size.height);
- } completion:^(BOOL finished) {
- UITableViewCell *cell = [articleTable cellForRowAtIndexPath:idx];
- cell.backgroundColor = [UIColor clearColor];
- }];
复制代码
2.使用UIView beginAnimations:context和UIView commitAnimations方法
Java代码
- [UIView beginAnimations:nil context: nil];
- [UIView setAnimationDuration:1.0];
- [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];//指定动画曲线
- [UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];//指定动画方式为卷帘向下,类似的动画切换方式有CurlUp、FlipFromLeft、FlipFromRight,对应Apple Developer Documents中的枚举结构如下
- //UIViewAnimationTransition
- //Specifies a transition to apply to a view in an animation block.
- //typedef enum {
- // UIViewAnimationTransitionNone,
- // UIViewAnimationTransitionFlipFromLeft,
- // UIViewAnimationTransitionFlipFromRight,
- // UIViewAnimationTransitionCurlUp,
- // UIViewAnimationTransitionCurlDown,
- //} UIViewAnimationTransition;
- //要动画改变的属性
- self.view.alpha = 0.0;//动画改变透明度
- self.view.frame = CGRectMake(10, 10, 50, 50);//动画将视图改变到指定位置指定大小
- [self.view exchangeSubviewAtIndex:1 withSubviewAtIndex:0];
- [UIView commitAnimations];//提交动画
复制代码
3.使用QuartzCore框架中的CATransition
Java代码
- CATransition *animation = [CATransition animation];
- animation.delegate = self;
- animation.duration = kDuration;
- animation.timingFunction = UIViewAnimationCurveEaseInOut;//动画的开始与结束的快慢
- animation.type = kCATransitionFade;//指定动画方式为Fade渐隐消去、类似还有kCATransitionPush、kCATransitionReveal、kCATransitionMoveIn、@"cube"、@"suckEffect"、@"oglFlip"、@"rippleEffect"、@"pageCurl"、@"pageUnCurl"、@"cameraIrisHollowOpen"、@"cameraIrisHollowClose"等,
- //pageCurl 向上翻一页
- //pageUnCurl 向下翻一页
- //rippleEffect 滴水效果
- //suckEffect 收缩效果,如一块布被抽走
- //cube 立方体效果
- //oglFlip 上下翻转效果
- //cameraIrisHollowOpen 相机打开效果
- //cameraIrisHollowClose 相机关闭效果
- Apple Developer Documents中介绍如下
- //Common Transition Types
- //These constants specify the transition types that can be used with the type property.
- //NSString * const kCATransitionFade;
- //NSString * const kCATransitionMoveIn;
- //NSString * const kCATransitionPush;
- //NSString * const kCATransitionReveal;
- animation.subtype = kCATransitionFromLeft;//指定动画进行方向从左边开始,类似还有kCATransitionFromBottom、kCATransitionFromRight、kCATransitionFromTop,Apple Developer Documents中介绍如下
- //Common Transition Subtypes
- //These constants specify the direction of motion-based transitions. They are used //with the subtype property.
- //NSString * const kCATransitionFromRight;
- //NSString * const kCATransitionFromLeft;
- //NSString * const kCATransitionFromTop;
- //NSString * const kCATransitionFromBottom;
- [self.view exchangeSubviewAtIndex:1 withSubviewAtIndex:0];
- [[self.view layer] addAnimation:animation forKey:@"animation"];
复制代码
原文链接:http://www.apkbus.com/android-131034-1-1.html
iOS页面切换动画实现方式。的更多相关文章
- (原)android中的动画(三)之动画监听&页面切换动画
1.动画也可以设置监听事件,例如在动画结束时需要执行某操作 把要执行的代码写在onAnimationEnd()回调方法中即可: anim.setAnimationListener(new Animat ...
- iOS页面间传值的方式(NSUserDefault/Delegate/NSNotification/Block/单例)
iOS页面间传值的方式(NSUserDefault/Delegate/NSNotification/Block/单例) 实现了以下iOS页面间传值:1.委托delegate方式:2.通知notific ...
- 【转】iOS页面间传值的方式(Delegate/NSNotification/Block/NSUserDefault/单例)-- 不错
原文网址:http://www.cnblogs.com/JuneWang/p/3850859.html iOS页面间传值的方式(NSUserDefault/Delegate/NSNotificatio ...
- iOS页面间传值的方式 (Delegate/NSNotification/Block/NSUserDefault/单例)
iOS页面间传值的方式(Delegate/NSNotification/Block/NSUserDefault/单例) iOS页面间传值的方式(NSUserDefault/Delegate/NSN ...
- QtQuick多页面切换、多页面切换动画、多个qml文件数据交互
一.QtQuick多页面切换方法 (1)“隐藏法” 前一个视图visible设为false或者透明度opacity设为0,相当于“隐藏”了,实际还存在: 要显示的视图visible设为true或者透明 ...
- Android5.0之后的页面切换动画
Android5.0之后给我们开发者剩了好多的事情,为什么这么说呢?还记得刚开始的时候,Android里面的所有的动画都要我们开发者自己来写,现在不需要了,因为5.0之后自带了好多的动画,比如:按钮点 ...
- iOS页面间传值的方式(Delegate/NSNotification/Block/NSUserDefault/单例)
iOS页面间传值实现方法:1.通过设置属性,实现页面间传值:2.委托delegate方式:3.通知notification方式:4.block方式:5.UserDefault或者文件方式:6.单例模式 ...
- PresentViewController切换界面(一些系统自带的页面切换动画)
视图切换,没有NavigationController的情况下,一般会使用presentViewController来切换视图并携带切换时的动画, 其中切换方法如下: – presentViewCon ...
- Windows Phone使用sliverlight toolkit实现页面切换动画效果
使用应用时,好多app在页面切换的时候都有一个动画效果,感觉很炫,也大大增加了用户体验,怎么实现呢? 界面的切换,可以用Windows Phone Toolkit中的TransitionService ...
随机推荐
- Keepalived实战(3)
一.环境 如上图所示: keepalived的mater为proxy-master,keepalived的slave为proxy-slave. 要求:当mater出现问题时,主动切换到slave上.这 ...
- Django查询笔记1
models.Book.objects.filter(**kwargs): querySet [obj1,obj2] models.Book.objects.filter(**kwargs).valu ...
- python模块安装
现在终于知道怎么在windows上导入Python的第三方模块了 首先在DOS下进入Python安装的pip目录:D:/Python27/Scripts 用pip install XXX安装 之前一直 ...
- JavaScript中数组map()方法
JavaScript 数组map()方法创建一个新的数组使用调用此数组中的每个元素上所提供的函数的结果.语法 ? 1 array.map(callback[, thisObject]); 下面是参数的 ...
- 免费V P N获取方式
给需要加速器链接国外网站的朋友, 打开网址:http://miaoaff.com/reg.php?id=204250: 用一个邮箱注册,就会得到一个免费的vpn软件账号(包含300M流量时间永久): ...
- 基于 fireasy 构建的 asp.net core 示例
最近花时间弄了一个关于fireasy使用的demo,已放到 github 上供大家研究,https://github.com/faib920/zero 该 demo 演示了如何使用 fireasy 创 ...
- BC高精确度函数使用。
bc是Binary Calculator的缩写.bc*函数的参数都是操作数加上一个可选的 [int scale],比如string bcadd(string $left_operand, string ...
- thinkPHP中_initialize方法实例分析
子类的_initialize方法自动调用父类的_initialize方法. 而php的构造函数construct,如果要调用父类的方法,必须在子类构造函数显示调用parent::__construct ...
- dede添加会员功能听语音
http://jingyan.baidu.com/article/363872ec36d33f6e4ba16fb7.html 其实 dede里面的 会员功能就是圈子模版啦 圈子 安装了 基本上有 1, ...
- linux常用命令(CentOS)
1.目录切换命令 linux目录结构 ps:绿色标注为常用命令 cd xx 切换到该目录下的xx目录 cd ../ 切换到上一层目录 cd / 切换到系统根目录 cd ~ 切换到用户主目录 cd - ...