实现iphone漂亮的动画效果主要有两种方法,一种是UIView层面的,一种是使用CATransition进行更低层次的控制,
第一种是UIView,UIView方式可能在低层也是使用CATransition进行了封装,它只能用于一些简单的、常用的效果展现,这里写一个常用的示例代码,供大家参考。

    1. "Curl"context:nil]; 
     //动画开始 
    2. [UIView setAnimationDuration:0.75];  [UIView setAnimationDelegate:self];  
    3. [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:myview cache:YES];  [myview removeFromSuperview];  
    4. [UIView commitAnimations];



    第二种方式相对复杂一些,但如果更好的进行控制,还是使用这种方法吧,基本使用方法可以看一下如下例子:




    1. 
      CATransition *animation = [CATransition animation];   
     
    2. [animation setDuration:1.25f];  [animation setTimingFunction:[CAMediaTimingFunction  
    3. functionWithName:kCAMediaTimingFunctionEaseIn]];  [animation setType:kCATransitionReveal];  
    4. [animation setSubtype: kCATransitionFromBottom];  [self.view.layer addAnimation:animation forKey:@"Reveal"];



    这里使用了setType与setSubtype组合,这使用个比较保险,因为他的参数就是官方API里定义的,他们的参数说明可以参考如下:




    1. 
      setType:可以返回四种类型:   
     
    2. kCATransitionFade淡出  kCATransitionMoveIn覆盖原图  
    3. kCATransitionPush推出  kCATransitionReveal底部显出来  
    4. setSubtype:也可以有四种类型:  kCATransitionFromRight;  
    5. kCATransitionFromLeft(默认值)  kCATransitionFromTop;  
    6. kCATransitionFromBottom



    还有一种设置动画类型的方法,不用setSubtype,只用setType



    1. "suckEffect"];   
    
    
    [animation setType:@"suckEffect"];


    这里的suckEffect就是效果名称,可以用的效果主要有:



    1. 
      pageCurl   向上翻一页   
     
    2. pageUnCurl 向下翻一页  rippleEffect 滴水效果  
    3. suckEffect 收缩效果,如一块布被抽走  cube 立方体效果  
    4. oglFlip 上下翻转效果



    最后再给出一种常用代码供大家参考。





    1. // Curl the image up or down 
    2. CATransition *animation = [CATransition animation];  [animation setDuration:0.35];  
    3. [animation setTimingFunction:UIViewAnimationCurveEaseInOut];  if
    4. //animation.type = @"mapCurl";   animation.type = @"pageCurl";  
    5. animation.fillMode = kCAFillModeForwards;  animation.endProgress = 0.99;  
    6. } else {  //animation.type = @"mapUnCurl"; 
    7. animation.type = @"pageUnCurl";  animation.fillMode = kCAFillModeBackwards;  
    8. animation.startProgress = 0.01;  }  
    9. [animation setRemovedOnCompletion:NO];  [view exchangeSubviewAtIndex:0 withSubviewAtIndex:1];  
    10. [view addAnimation:animation forKey"pageCurlAnimation"];  // Disable user interaction where necessary 
    11. if
    12. } else
    13. }  curled = !curled;