自定义UIView动画效果

最普通动画:

1 //开始动画
2 [UIView beginAnimations:nil context:nil];
3 //设定动画持续时间
4 [UIView setAnimationDuration:2];
5 //动画的内容
6 frame.origin.x += 150;
7 [img setFrame:frame];
8 //动画结束
9 [UIView commitAnimations];

连续动画:一个接一个地显示一系列的图像

 1 NSArray *myImages = [NSArray arrayWithObjects:
 2 [UIImage imageNamed:@"myImage1.png"],
 3 [UIImage imageNamed:@"myImage2.png"],
 4 [UIImage imageNamed:@"myImage3.png"],
 5 [UIImage imageNamed:@"myImage4.gif"], nil];
 6
 7 UIImageView *myAnimatedView = [UIImageView alloc];
 8 [myAnimatedView initWithFrame:[self bounds]];
 9 myAnimatedView.animationImages = myImages; //animationImages属性返回一个存放动画图片的数组
10 myAnimatedView.animationDuration = 0.25; //浏览整个图片一次所用的时间
11 myAnimatedView.animationRepeatCount = 0; // 0 = loops forever 动画重复次数
12 [myAnimatedView startAnimating];
13 [self addSubview:myAnimatedView];
14 [myAnimatedView release];
15
16 CATransition Public API动画:
17 CATransition *animation = [CATransition animation];
18 //动画时间
19     animation.duration = 0.5f;
20 //先慢后快
21     animation.timingFunction = UIViewAnimationCurveEaseInOut;
22 animation.fillMode = kCAFillModeForwards;
23 //animation.removedOnCompletion = NO;

各种动画效果

 1 /*
 2 kCAFillModeRemoved 这个是默认值,也就是说当动画开始前和动画结束后,动画对layer都没有影响,动画结束后,layer会恢复到之前的状态
 3
 4 kCAFillModeForwards 当动画结束后,layer会一直保持着动画最后的状态
 5 kCAFillModeBackwards 这个和kCAFillModeForwards是相对的,就是在动画开始前,你只要将动画加入了一个layer,layer便立即进入动画的初始状态并等待动画开始.你可以这样设定测试代码,将一个动画加入一个layer的时候延迟5秒执行.然后就会发现在动画没有开始的时候,只要动画被加入了layer,layer便处于动画初始状态
 6 kCAFillModeBoth 理解了上面两个,这个就很好理解了,这个其实就是上面两个的合成.动画加入后开始之前,layer便处于动画初始状态,动画结束后layer保持动画最后的状态.
 7
 8 */
 9 /*
10 kCATransitionFromRight;
11 kCATransitionFromLeft;
12 kCATransitionFromTop;
13 kCATransitionFromBottom;
14 */
15 //各种组合
16 animation.type = kCATransitionPush;
17 animation.subtype = kCATransitionFromRight;
18
19 [self.view.layer addAnimation:animation forKey:@"animation"];
20
21 CATransition Private API动画:
22 animation.type可以设定为以下效果
23 动画效果汇总:
24 /*
25 suckEffect(三角)
26
27 rippleEffect(水波抖动)
28
29 pageCurl(上翻页)
30
31 pageUnCurl(下翻页)
32
33 oglFlip(上下翻转)
34
35 cameraIris/cameraIrisHollowOpen/cameraIrisHollowClose  (镜头快门,这一组动画是有效果,只是很难看,不建议使用
36
37 而以下为则黑名单:
38
39 spewEffect: 新版面在屏幕下方中间位置被释放出来覆盖旧版面.
40
41 - genieEffect: 旧版面在屏幕左下方或右下方被吸走, 显示出下面的新版面 (阿拉丁灯神?).
42
43 - unGenieEffect: 新版面在屏幕左下方或右下方被释放出来覆盖旧版面.
44
45 - twist: 版面以水平方向像龙卷风式转出来.
46
47 - tubey: 版面垂直附有弹性的转出来.
48
49 - swirl: 旧版面360度旋转并淡出, 显示出新版面.
50
51 - charminUltra: 旧版面淡出并显示新版面.
52
53 - zoomyIn: 新版面由小放大走到前面, 旧版面放大由前面消失.
54
55 - zoomyOut: 新版面屏幕外面缩放出现, 旧版面缩小消失.
56
57 - oglApplicationSuspend: 像按"home" 按钮的效果.
58 */
59
60 UIView Animations 动画:
61 [UIView beginAnimations:@"animationID" context:nil];
62 [UIView setAnimationDuration:0.5f];
63 [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
64 [UIView setAnimationRepeatAutoreverses:NO];
65 //以下四种效果
66 /*
67 [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];//oglFlip, fromLeft
68 [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.view cache:YES];//oglFlip, fromRight
69 [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
70 [UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];
71 */
72
73 [self.view exchangeSubviewAtIndex:1 withSubviewAtIndex:0];
74 [UIView commitAnimations];
75 IOS4.0新方法:
76 方法: +(void)animateWithDuration:(NSTimeInterval)duration animations:(void (^)(void))animations;
77 + (void)animateWithDuration:(NSTimeInterval)duration animations:(void (^)(void))animations completion:(void (^)(BOOL finished))completion; //多一个动画结束后可以执行的操作.
78 //下边是嵌套使用,先变大再消失的动画效果.
79 [UIView animateWithDuration:1.25 animations:^{
80 CGAffineTransform newTransform = CGAffineTransformMakeScale(1.2, 1.2);
81 [firstImageView setTransform:newTransform];
82 [secondImageView setTransform:newTransform];}
83 completion:^(BOOL finished){
84 [UIView animateWithDuration:1.2 animations:^{
85 [firstImageView setAlpha:0];
86 [secondImageView setAlpha:0];} completion:^(BOOL finished){
87 [firstImageView removeFromSuperview];
88 [secondImageView removeFromSuperview]; }];
89 }];
时间: 2024-09-28 20:34:40

自定义UIView动画效果的相关文章

自定义ModalViewController 动画效果

iOS 7 自定义ViewController动画切换 自定义动画切换的相关的主要API 在深入之前,我们先来看看新SDK中有关这部分内容的相关接口以及它们的关系和典型用法.这几个接口和类的名字都比较相似,但是还是能比较好的描述出各自的职能的,一开始的话可能比较迷惑,但是当自己动手实现一两个例子之后,它们之间的关系就会逐渐明晰起来.(相关的内容都定义在UIKit的UIViewControllerTransitioning.h中了) @protocol UIViewControllerContex

UIView动画效果

做出UI界面,实现程序功能,是重中之重,但是通过动画提升使用体验,一般人应该不会拒绝吧. 那么问题又来了,怎么做? 一: 稳扎稳打: 一步一步来吧,毕竟,心急吃不了热豆腐. 1.开启一个动画 2,设置该动画的各种属性:动画时长.延时执行.自动返回.动画重复次数.转场动画... 3,设置动画的UI的结束时的状态是什么,UI的最终位置等. 4,提交动画. 大功告成.具体细节如下: //===---开始动画 ---=== [UIView beginAnimations:nil context:nil]

【iOS开发-24】导航控制器下不同视图控制器之间切换:利用CATrasition和view的layer层来实现自定义的动画效果

(1)这里的动画效果指的是界面切换的动画效果,我们常见的又淡入淡出,右出左进等等,当然还有一些高级动画,这种动画适合游戏类的,对于一般APP会显得太花哨. (2)我们在此处没有增加任何框架(QuartzCore)也没有导入什么头文件(QuartzCore.h),就可以直接用CATransiton(相当于是CAAnimation的子类)来创建一个对象,如animation1. (3)创建完之后我们就对这个动画对象进行动画设置,这里面主要是涉及到type属性,而且值有两种:一种是调用系统自带的一些效

自定义PopupWindow动画效果

Java代码   public class RollActivity extends Activity { private View view; private Button btn; private PopupWindow mPopupWindow; private View[] btns; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceS

Android 自定义PopupWindow动画效果

public class RollActivity extends Activity { private View view; private Button btn; private PopupWindow mPopupWindow; private View[] btns; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { s

iOS UIView动画效果 学习笔记

CGRect frame = _confirmV.frame; [UIView beginAnimations:nil context:nil];//动画定义开始 [UIView setAnimationDuration:0.5];//动画的时长 [UIView setAnimationDelay:0]; [UIView setAnimationDelegate:self]; [UIView setAnimationDidStopSelector:@selector(removeConfirmV

CSS--使用Animate.css制作动画效果

一 使用Animate.css动画 // 通过@import引入外部CSS资源; // 引入线上图片及JS文件; // 通过更改CSS类名生成不同类型的CSS3动画;   1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 </head> 6 <style> 7 /* Animate.css GitHu

IOS开发-UIView之动画效果的实现方法(合集)

http://www.cnblogs.com/GarveyCalvin/p/4193963.html 前言:在开发APP中,我们会经常使用到动画效果.使用动画可以让我们的APP更酷更炫,最重要的是优化用户体验,但取决于动画的质量.像QQ.微信.新浪微博等APP,动画效果就很好了,至少我很喜欢它们的动画,让我使用起来感觉很顺畅,心情很开朗.本文会介绍UIView效果的实现方法,非核心动画. 一.使用UIView类实现动画 基本写法,代码必须放在Begin和Commit之间: [UIView beg

定时器与 UIView 动画结合的雪花降落的效果

1 #import "HUAppDelegate.h" 2 3 @implementation HUAppDelegate 4 5 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 6 { 7 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScr