iPhone开发创建连续动画案例

移动开发 iOS
本文介绍的是iPhone开发创建连续动画案例,主要介绍了iphone开发中动画的作用,来看详细内容。

iPhone开发创建连续动画案例是本文要介绍的内容,主要详细介绍了在iphone开发中连续动画的实现。来看详细内容。在iphone开发中,我们有些时候需要创建连续的动画效果,使用户体验更好。

连续动画就是一段动画运行完毕后调用另一段动画,一定要保证两段动画没有重叠,本文不打算使用CAKeyframeAnimation建立连续的动画块,虽然使用CAKeyframeAnimation更简单(在其他的博文中实现此方法)

大概有两种方法可以选择:

1.增加延迟以便在***段动画结束之后在启动第二段动画([performSelector:withObject:afterDelay:])

2.指定动画委托回调(animationDidStop:finished:context:)

从编程的角度来说就更容易,下面我们将扩展类UIView的方法,通过类别引入一个新的方法----commitModalAnimations.调用此方法而不是调用commitAnimations方法,它会建立一个新的runloop,该循环只有在动画结束的时候才会停止。

这样确保了commitModalAnimations方法只有在动画结束才将控制权返还给调用方法,利用此扩展方法可以将动画块按顺序放进代码中,不必做任何其他的修改就能避免动画的重叠现象。

代码如下:

  1. @interface UIView (ModalAnimationHelper)  
  2. + (void) commitModalAnimations;  
  3. @end  
  4. @interface UIViewDelegate : NSObject  
  5. {  
  6. CFRunLoopRef currentLoop;  
  7. }  
  8. @end  
  9. @implementation UIViewDelegate  
  10. -(id) initWithRunLoop: (CFRunLoopRef)runLoop   
  11. {  
  12. if (self = [super init]) currentLoop = runLoop;  
  13. return self;  
  14. }  
  15. (void) animationFinished: (id) sender  
  16. {  
  17. CFRunLoopStop(currentLoop);  
  18. }  
  19. @end  
  20. @implementation UIView (ModalAnimationHelper)  
  21. + (void) commitModalAnimations  
  22. {  
  23. CFRunLoopRef currentLoop = CFRunLoopGetCurrent();  
  24. UIViewDelegate *uivdelegate = [[UIViewDelegate alloc] initWithRunLoop:currentLoop];  
  25. [UIView setAnimationDelegate:uivdelegate];  
  26. [UIView setAnimationDidStopSelector:@selector(animationFinished:)];  
  27. [UIView commitAnimations];  
  28. CFRunLoopRun();  
  29. [uivdelegate release];  
  30. }  
  31. @end 

使用:

  1. [self.view viewWithTag:101].alpha = 1.0f;  
  2. // Bounce to 115% of the normal size  
  3. [UIView beginAnimations:nil context:UIGraphicsGetCurrentContext()];  
  4. [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];  
  5. [UIView setAnimationDuration:0.4f];  
  6. [self.view viewWithTag:101].transform = CGAffineTransformMakeScale(1.15f, 1.15f);  
  7. [UIView commitModalAnimations];  
  8. // Return back to 100%  
  9. [UIView beginAnimations:nil context:UIGraphicsGetCurrentContext()];  
  10. [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];  
  11. [UIView setAnimationDuration:0.3f];  
  12. [self.view viewWithTag:101].transform = CGAffineTransformMakeScale(1.0f, 1.0f);  
  13. [UIView commitModalAnimations];  
  14. // Pause for a second and appreciate the presentation  
  15. [NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow:1.0f]];  
  16. // Slowly zoom back down and hide the view  
  17. [UIView beginAnimations:nil context:UIGraphicsGetCurrentContext()];  
  18. [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];  
  19. [UIView setAnimationDuration:1.0f];  
  20. [self.view viewWithTag:101].transform = CGAffineTransformMakeScale(0.01f, 0.01f);  
  21. [UIView commitModalAnimations]; 

小结:iPhone开发创建连续动画案例的内容介绍完了,希望本文对你有所帮助!

责任编辑:zhaolei 来源: 互联网
相关推荐

2009-08-28 17:51:40

iPhone多视图开发

2011-08-15 15:44:46

iPhone开发PDF

2011-08-18 16:24:44

iPhone开发图片

2011-08-15 13:50:06

IPhone开发UIView动画

2011-08-12 14:04:53

iPhone动画

2011-07-25 17:13:31

iPhone 图形 动画

2011-08-15 18:02:32

iPhone开发表视图

2011-08-09 14:54:29

iPhoneNSDateanotherDate

2011-08-19 10:13:05

iPhone开发

2011-08-19 11:10:31

iPhone应用

2011-08-16 15:48:37

iPhone开发抓图程序

2011-07-29 14:55:25

iPhone开发 动画过渡

2011-08-16 18:13:42

IPhone开发UIView动画

2011-08-12 11:31:46

iPhoneUIView动画

2011-07-08 10:15:15

IPhone 动画

2011-08-17 16:12:20

iPhone应用程序

2011-08-18 15:24:40

iPhone国际化

2011-08-17 16:23:31

iPhone开发UIViewContr

2011-08-10 14:40:23

iPhone动画

2011-08-19 10:05:30

iPhone开发
点赞
收藏

51CTO技术栈公众号