轉載:iOS開發之讓你的應用「動」起來

在iOS中隨處均可以看到絢麗的動畫效果,實現這些動畫的過程並不複雜,今天將帶你們一窺iOS動畫全貌。在這裏你能夠看到iOS中如何使用圖層精簡非交互式繪圖,如何經過核心動畫建立基礎動畫、關鍵幀動畫、動畫組、轉場動畫,如何經過UIView的裝飾方法對這些動畫操做進行簡化等。在今天的文章裏您能夠看到動畫操做在iOS中是如何簡單和高效,不少原來想作可是苦於沒有思路的動畫在iOS中將變得愈加簡單:html

CALayer算法

CALayer簡介瀏覽器

在介紹動畫操做以前咱們必須先來了解一個動畫中經常使用的對象CALayer。CALayer包含在QuartzCore框架中,這是一個跨平臺的框架,既能夠用在iOS中又能夠用在Mac OS X中。在使用Core Animation開發動畫的本質就是將CALayer中的內容轉化爲位圖從而供硬件操做,因此要熟練掌握動畫操做必須先來熟悉CALayer。緩存

在上一篇文章中使用Quartz 2D繪圖時你們其實已經用到了CALayer,當利用drawRect:方法繪圖的本質就是繪製到了UIView的layer(屬性)中,但是這個過程你們在上一節中根本體會不到。可是在Core Animation中咱們操做更多的則再也不是UIView而是直接面對CALayer。下圖描繪了CALayer和UIView的關係,在UIView中有一個layer屬性做爲根圖層,根圖層上能夠放其餘子圖層,在UIView中全部可以看到的內容都包含在layer中:性能優化

CALayer經常使用屬性併發

在iOS中CALayer的設計主要是了爲了內容展現和動畫操做,CALayer自己並不包含在UIKit中,它不能響應事件。因爲CALayer在設計之初就考慮它的動畫操做功能,CALayer不少屬性在修改時都能造成動畫效果,這種屬性稱爲“隱式動畫屬性”。可是對於UIView的根圖層而言屬性的修改並不造成動畫效果,由於不少狀況下根圖層更多的充當容器的作用,若是它的屬性變更造成動畫效果會直接影響子圖層。另外,UIView的根圖層建立工做徹底由iOS負責完成,沒法從新建立,可是能夠往根圖層中添加子圖層或移除子圖層。app

下表列出了CALayer經常使用的屬性: 框架

 

1.隱式屬性動畫的本質是這些屬性的變更默認隱含了CABasicAnimation動畫實現,詳情你們能夠參照Xcode幫助文檔中“Animatable Properties”一節。ide

2.在CALayer中不多使用frame屬性,由於frame自己不支持動畫效果,一般使用bounds和position代替。oop

3.CALayer中透明度使用opacity表示而不是alpha;中心點使用position表示而不是center。

4.anchorPoint屬性是圖層的錨點,範圍在(0~1,0~1)表示在x、y軸的比例,這個點永遠能夠同position(中心點)重合,當圖層中心點固定後,調整anchorPoint便可達到調整圖層顯示位置的做用(由於它永遠和position重合)

爲了進一步說明anchorPoint的做用,假設有一個層大小100*100,如今中心點位置(50,50),由此能夠得出frame(0,0,100,100)。上面說過anchorPoint默認爲(0.5,0.5),同中心點position重合,此時使用圖形描述如圖1;當修改anchorPoint爲(0,0),此時錨點處於圖層左上角,可是中心點poition並不會改變,所以圖層會向右下角移動,如圖2;而後修改anchorPoint爲(1,1,),position仍是保持位置不變,錨點處於圖層右下角,此時圖層如圖3。

下面經過一個簡單的例子演示一下上面幾個屬性,程序初始化階段咱們定義一個正方形,可是圓角路徑調整爲正方形邊長的通常,使其看起來是一個圓形,在點擊屏幕的時候修改圖層的屬性造成動畫效果(注意在程序中沒有直接修改UIView的layer屬性,由於根圖層沒法造成動畫效果):

  1. // 
  2. //  KCMainViewController.m 
  3. //  CALayer 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #define WIDTH 50 
  11.  
  12. @interface KCMainViewController () 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.     // Do any additional setup after loading the view. 
  21.     [self drawMyLayer]; 
  22.  
  23. #pragma mark 繪製圖層 
  24. -(void)drawMyLayer{ 
  25.     CGSize size=[UIScreen mainScreen].bounds.size; 
  26.      
  27.     //得到根圖層 
  28.     CALayer *layer=[[CALayer alloc]init]; 
  29.     //設置背景顏色,因爲QuartzCore是跨平臺框架,沒法直接使用UIColor 
  30.     layer.backgroundColor=[UIColor colorWithRed:0 green:146/255.0 blue:1.0 alpha:1.0].CGColor; 
  31.     //設置中心點 
  32.     layer.position=CGPointMake(size.width/2, size.height/2); 
  33.     //設置大小 
  34.     layer.bounds=CGRectMake(0, 0, WIDTH,WIDTH); 
  35.     //設置圓角,當圓角半徑等於矩形的一半時看起來就是一個圓形 
  36.     layer.cornerRadius=WIDTH/2; 
  37.     //設置陰影 
  38.     layer.shadowColor=[UIColor grayColor].CGColor; 
  39.     layer.shadowOffset=CGSizeMake(2, 2); 
  40.     layer.shadowOpacity=.9; 
  41.     //設置邊框 
  42. //    layer.borderColor=[UIColor whiteColor].CGColor; 
  43. //    layer.borderWidth=1; 
  44.  
  45.     //設置錨點 
  46. //    layer.anchorPoint=CGPointZero; 
  47.  
  48.     [self.view.layer addSublayer:layer]; 
  49.  
  50.  
  51. #pragma mark 點擊放大 
  52. -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{ 
  53.     UITouch *touch=[touches anyObject]; 
  54.     CALayer *layer=self.view.layer.sublayers[0]; 
  55.     CGFloat width=layer.bounds.size.width; 
  56.     if (width==WIDTH) { 
  57.         width=WIDTH*4; 
  58.     }else{ 
  59.         width=WIDTH; 
  60.     } 
  61.     layer.bounds=CGRectMake(0, 0, width, width); 
  62.     layer.position=[touch locationInView:self.view]; 
  63.     layer.cornerRadius=width/2; 
  64. @end 

運行效果

CALayer繪圖

上一篇文章中重點討論了使用Quartz 2D繪圖,當時調用了UIView的drawRect:方法繪製圖形、圖像,這種方式本質仍是在圖層中繪製,可是這裏會着重介紹一下如何直接在圖層中繪圖。在圖層中繪圖的方式跟原來基本沒有區別,只是drawRect:方法是由UIKit組件進行調用,所以裏面可使用一些UIKit封裝的方法進行繪圖,而直接繪製到圖層的方法因爲並不是UIKit直接調用所以只能用原生的Core Graphics方法繪製。

圖層繪圖有兩種方法,無論使用哪一種方法繪製完必須調用圖層的setNeedDisplay方法(注意是圖層的方法,不是UIView的方法,前面咱們介紹過UIView也有此方法)

 1.經過圖層代理drawLayer: inContext:方法繪製

2.經過自定義圖層drawInContext:方法繪製

使用代理方法繪圖

經過代理方法進行圖層繪圖只要指定圖層的代理,而後在代理對象中重寫-(void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx方法便可。須要注意這個方法雖然是代理方法可是不用手動實現CALayerDelegate,由於CALayer定義中給NSObject作了分類擴展,全部的NSObject都包含這個方法。另外設置完代理後必需要調用圖層的setNeedDisplay方法,不然繪製的內容沒法顯示。

下面的代碼演示了在一個自定義圖層繪製一張圖像並將圖像設置成圓形,這種效果在不少應用中很常見,如最新版的手機QQ頭像就是這種效果:

  1. // 
  2. //  KCMainViewController.m 
  3. //  CALayer 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #define PHOTO_HEIGHT 150 
  11.  
  12. @interface KCMainViewController () 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //自定義圖層 
  22.     CALayer *layer=[[CALayer alloc]init]; 
  23.     layer.bounds=CGRectMake(0, 0, PHOTO_HEIGHT, PHOTO_HEIGHT); 
  24.     layer.position=CGPointMake(160, 200); 
  25.     layer.backgroundColor=[UIColor redColor].CGColor; 
  26.     layer.cornerRadius=PHOTO_HEIGHT/2; 
  27.     //注意僅僅設置圓角,對於圖形而言能夠正常顯示,可是對於圖層中繪製的圖片沒法正確顯示 
  28.     //若是想要正確顯示則必須設置masksToBounds=YES,剪切子圖層 
  29.     layer.masksToBounds=YES; 
  30.     //陰影效果沒法和masksToBounds同時使用,由於masksToBounds的目的就是剪切外邊框, 
  31.     //而陰影效果恰好在外邊框 
  32. //    layer.shadowColor=[UIColor grayColor].CGColor; 
  33. //    layer.shadowOffset=CGSizeMake(2, 2); 
  34. //    layer.shadowOpacity=1; 
  35.     //設置邊框 
  36.     layer.borderColor=[UIColor whiteColor].CGColor; 
  37.     layer.borderWidth=2; 
  38.      
  39.     //設置圖層代理 
  40.     layer.delegate=self; 
  41.      
  42.     //添加圖層到根圖層 
  43.     [self.view.layer addSublayer:layer]; 
  44.      
  45.     //調用圖層setNeedDisplay,不然代理方法不會被調用 
  46.     [layer setNeedsDisplay]; 
  47.  
  48. #pragma mark 繪製圖形、圖像到圖層,注意參數中的ctx是圖層的圖形上下文,其中繪圖位置也是相對圖層而言的 
  49. -(void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx{ 
  50. //    NSLog(@"%@",layer);//這個圖層正是上面定義的圖層 
  51.     CGContextSaveGState(ctx); 
  52.  
  53.     //圖形上下文形變,解決圖片倒立的問題 
  54.     CGContextScaleCTM(ctx, 1, -1); 
  55.     CGContextTranslateCTM(ctx, 0, -PHOTO_HEIGHT); 
  56.      
  57.     UIImage *image=[UIImage imageNamed:@"photo.png"]; 
  58.     //注意這個位置是相對於圖層而言的不是屏幕 
  59.     CGContextDrawImage(ctx, CGRectMake(0, 0, PHOTO_HEIGHT, PHOTO_HEIGHT), image.CGImage); 
  60.  
  61. //    CGContextFillRect(ctx, CGRectMake(0, 0, 100, 100)); 
  62. //    CGContextDrawPath(ctx, kCGPathFillStroke); 
  63.      
  64.     CGContextRestoreGState(ctx); 
  65.  
  66. @end 

運行效果

使用代理方法繪製圖形、圖像時在drawLayer:inContext:方法中能夠經過事件參數得到繪製的圖層和圖形上下文。在這個方法中繪圖時全部的位置都是相對於圖層而言的,圖形上下文指的也是當前圖層的圖形上下文。

須要注意的是上面代碼中繪製圖片圓形裁切效果時若是不設置masksToBounds是沒法顯示圓形,可是對於其餘圖形卻沒有這個限制。緣由就是當繪製一張圖片到圖層上的時候會從新建立一個圖層添加到當前圖層,這樣一來若是設置了圓角以後雖然底圖層有圓角效果,可是子圖層仍是矩形,只有設置了masksToBounds爲YES讓子圖層按底圖層剪切才能顯示圓角效果。一樣的,有些朋友常常在網上提問說爲何使用UIImageView的layer設置圓角後圖片沒法顯示圓角,只有設置masksToBounds才能出現效果,也是相似的問題。

擴展1--帶陰影效果的圓形圖片裁切

若是設置了masksToBounds=YES以後確實能夠顯示圖片圓角效果,但遺憾的是設置了這個屬性以後就沒法設置陰影效果。由於masksToBounds=YES就意味着外邊框不能顯示,而陰影偏偏做爲外邊框繪製的,這樣兩個設置就產生了矛盾。要解決這個問題不妨換個思路:使用兩個大小同樣的圖層,下面的圖層負責繪製陰影,上面的圖層用來顯示圖片。

  1. // 
  2. //  KCMainViewController.m 
  3. //  CALayer 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #define PHOTO_HEIGHT 150 
  11.  
  12. @interface KCMainViewController () 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     CGPoint position= CGPointMake(160, 200); 
  22.     CGRect bounds=CGRectMake(0, 0, PHOTO_HEIGHT, PHOTO_HEIGHT); 
  23.     CGFloat cornerRadius=PHOTO_HEIGHT/2; 
  24.     CGFloat borderWidth=2; 
  25.      
  26.     //陰影圖層 
  27.     CALayer *layerShadow=[[CALayer alloc]init]; 
  28.     layerShadow.bounds=bounds; 
  29.     layerShadow.position=position; 
  30.     layerShadow.cornerRadius=cornerRadius; 
  31.     layerShadow.shadowColor=[UIColor grayColor].CGColor; 
  32.     layerShadow.shadowOffset=CGSizeMake(2, 1); 
  33.     layerShadow.shadowOpacity=1; 
  34.     layerShadow.borderColor=[UIColor whiteColor].CGColor; 
  35.     layerShadow.borderWidth=borderWidth; 
  36.     [self.view.layer addSublayer:layerShadow]; 
  37.      
  38.     //容器圖層 
  39.     CALayer *layer=[[CALayer alloc]init]; 
  40.     layer.bounds=bounds; 
  41.     layer.position=position; 
  42.     layer.backgroundColor=[UIColor redColor].CGColor; 
  43.     layer.cornerRadius=cornerRadius; 
  44.     layer.masksToBounds=YES; 
  45.     layer.borderColor=[UIColor whiteColor].CGColor; 
  46.     layer.borderWidth=borderWidth; 
  47.      
  48.     //設置圖層代理 
  49.     layer.delegate=self; 
  50.      
  51.     //添加圖層到根圖層 
  52.     [self.view.layer addSublayer:layer]; 
  53.      
  54.     //調用圖層setNeedDisplay,不然代理方法不會被調用 
  55.     [layer setNeedsDisplay]; 
  56.  
  57. #pragma mark 繪製圖形、圖像到圖層,注意參數中的ctx是圖層的圖形上下文,其中繪圖位置也是相對圖層而言的 
  58. -(void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx{ 
  59.     //    NSLog(@"%@",layer);//這個圖層正是上面定義的圖層 
  60.     CGContextSaveGState(ctx); 
  61.      
  62.     //圖形上下文形變,解決圖片倒立的問題 
  63.     CGContextScaleCTM(ctx, 1, -1); 
  64.     CGContextTranslateCTM(ctx, 0, -PHOTO_HEIGHT); 
  65.      
  66.     UIImage *image=[UIImage imageNamed:@"photo.jpg"]; 
  67.     //注意這個位置是相對於圖層而言的不是屏幕 
  68.     CGContextDrawImage(ctx, CGRectMake(0, 0, PHOTO_HEIGHT, PHOTO_HEIGHT), image.CGImage); 
  69.      
  70.     //    CGContextFillRect(ctx, CGRectMake(0, 0, 100, 100)); 
  71.     //    CGContextDrawPath(ctx, kCGPathFillStroke); 
  72.      
  73.     CGContextRestoreGState(ctx); 
  74. @end 

 運行效果

擴展2--圖層的形變
從上面代碼中你們不難發現使用Core Graphics繪製圖片時會倒立顯示,對圖層的圖形上下文進行了反轉。在前一篇文章中也採用了相似的方法去解決這個問題,可是在那篇文章中也提到過若是直接讓圖像沿着x軸旋轉180度一樣能夠達到正確顯示的目的,只是當時的旋轉靠圖形上下文還沒法繞x軸旋轉。今天學習了圖層以後,其實能夠控制圖層直接旋轉而不用藉助於圖形上下文的形變操做,並且這麼操做起來會更加簡單和直觀。對於上面的程序,只須要設置圖層的transform屬性便可。須要注意的是transform是CATransform3D類型,形變能夠在三個維度上進行,使用方法和前面介紹的二維形變是相似的,並且都有對應的形變設置方法(如:CATransform3DMakeTranslation()、CATransform3DMakeScale()、CATransform3DMakeRotation())。下面的代碼經過CATransform3DMakeRotation()方法在x軸旋轉180度解決倒立問題:
  1. // 
  2. //  形變演示 
  3. //  CALayer 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #define PHOTO_HEIGHT 150 
  11.  
  12. @interface KCMainViewController () 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.  
  21.     CGPoint position= CGPointMake(160, 200); 
  22.     CGRect bounds=CGRectMake(0, 0, PHOTO_HEIGHT, PHOTO_HEIGHT); 
  23.     CGFloat cornerRadius=PHOTO_HEIGHT/2; 
  24.     CGFloat borderWidth=2; 
  25.  
  26.     //陰影圖層 
  27.     CALayer *layerShadow=[[CALayer alloc]init]; 
  28.     layerShadow.bounds=bounds; 
  29.     layerShadow.position=position; 
  30.     layerShadow.cornerRadius=cornerRadius; 
  31.     layerShadow.shadowColor=[UIColor grayColor].CGColor; 
  32.     layerShadow.shadowOffset=CGSizeMake(2, 1); 
  33.     layerShadow.shadowOpacity=1; 
  34.     layerShadow.borderColor=[UIColor whiteColor].CGColor; 
  35.     layerShadow.borderWidth=borderWidth; 
  36.     [self.view.layer addSublayer:layerShadow]; 
  37.  
  38.     //容器圖層 
  39.     CALayer *layer=[[CALayer alloc]init]; 
  40.     layer.bounds=bounds; 
  41.     layer.position=position; 
  42.     layer.backgroundColor=[UIColor redColor].CGColor; 
  43.     layer.cornerRadius=cornerRadius; 
  44.     layer.masksToBounds=YES; 
  45.     layer.borderColor=[UIColor whiteColor].CGColor; 
  46.     layer.borderWidth=borderWidth; 
  47.      
  48.     //利用圖層形變解決圖像倒立問題 
  49.     layer.transform=CATransform3DMakeRotation(M_PI, 1, 0, 0); 
  50.      
  51.     //設置圖層代理 
  52.     layer.delegate=self; 
  53.  
  54.     //添加圖層到根圖層 
  55.     [self.view.layer addSublayer:layer]; 
  56.  
  57.     //調用圖層setNeedDisplay,不然代理方法不會被調用 
  58.     [layer setNeedsDisplay]; 
  59.  
  60. #pragma mark 繪製圖形、圖像到圖層,注意參數中的ctx時圖層的圖形上下文,其中繪圖位置也是相對圖層而言的 
  61. -(void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx{ 
  62.     //    NSLog(@"%@",layer);//這個圖層正是上面定義的圖層 
  63.     UIImage *image=[UIImage imageNamed:@"photo.jpg"]; 
  64.     //注意這個位置是相對於圖層而言的不是屏幕 
  65.     CGContextDrawImage(ctx, CGRectMake(0, 0, PHOTO_HEIGHT, PHOTO_HEIGHT), image.CGImage); 
  66.  
  67. @end 

事實上若是僅僅就顯示一張圖片在圖層中固然沒有必要那麼麻煩,直接設置圖層contents就能夠了,不牽涉到繪圖也就沒有倒立的問題了。

  1. // 
  2. //  圖層內容設置 
  3. //  CALayer 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #define PHOTO_HEIGHT 150 
  11.  
  12. @interface KCMainViewController () 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.  
  21.     CGPoint position= CGPointMake(160, 200); 
  22.     CGRect bounds=CGRectMake(0, 0, PHOTO_HEIGHT, PHOTO_HEIGHT); 
  23.     CGFloat cornerRadius=PHOTO_HEIGHT/2; 
  24.     CGFloat borderWidth=2; 
  25.  
  26.     //陰影圖層 
  27.     CALayer *layerShadow=[[CALayer alloc]init]; 
  28.     layerShadow.bounds=bounds; 
  29.     layerShadow.position=position; 
  30.     layerShadow.cornerRadius=cornerRadius; 
  31.     layerShadow.shadowColor=[UIColor grayColor].CGColor; 
  32.     layerShadow.shadowOffset=CGSizeMake(2, 1); 
  33.     layerShadow.shadowOpacity=1; 
  34.     layerShadow.borderColor=[UIColor whiteColor].CGColor; 
  35.     layerShadow.borderWidth=borderWidth; 
  36.     [self.view.layer addSublayer:layerShadow]; 
  37.  
  38.     //容器圖層 
  39.     CALayer *layer=[[CALayer alloc]init]; 
  40.     layer.bounds=bounds; 
  41.     layer.position=position; 
  42.     layer.backgroundColor=[UIColor redColor].CGColor; 
  43.     layer.cornerRadius=cornerRadius; 
  44.     layer.masksToBounds=YES; 
  45.     layer.borderColor=[UIColor whiteColor].CGColor; 
  46.     layer.borderWidth=borderWidth; 
  47.     //設置內容(注意這裏必定要轉換爲CGImage) 
  48.     UIImage *image=[UIImage imageNamed:@"photo.jpg"]; 
  49. //    layer.contents=(id)image.CGImage; 
  50.     [layer setContents:(id)image.CGImage]; 
  51.  
  52.     //添加圖層到根圖層 
  53.     [self.view.layer addSublayer:layer]; 
  54.  
  55. @end 

既然如此爲何還大費周章的說形變呢,由於形變對於動畫有特殊的意義。在動畫開發中形變每每不是直接設置transform,而是經過keyPath進行設置。這種方法設置形變的本質和前面沒有區別,只是利用了KVC能夠動態修改其屬性值而已,可是這種方式在動畫中確實很經常使用的,由於它能夠很方便的將幾種形變組合到一塊兒使用。一樣是解決動畫旋轉問題,只要將前面的旋轉代碼改成下面的代碼便可:

  1. [layer setValue:@M_PI forKeyPath:@"transform.rotation.x"]; 

固然,經過key path設置形變參數就須要瞭解有哪些key path能夠設置,這裏就再也不一一列舉,你們能夠參照Xcode幫助文檔中「CATransform3D Key Paths」一節,裏面描述的很詳細。

使用自定義圖層繪圖

在自定義圖層中繪圖時只要本身編寫一個類繼承於CALayer而後在drawInContext:中繪圖便可。同前面在代理方法繪圖同樣,要顯示圖層中繪製的內容也要調用圖層的setNeedDisplay方法,不然drawInContext方法將不會調用。

前面的文章中曾經說過,在使用Quartz 2D在UIView中繪製圖形的本質也是繪製到圖層中,爲了說明這個問題下面演示自定義圖層繪圖時沒有直接在視圖控制器中調用自定義圖層,而是在一個UIView將自定義圖層添加到UIView的根圖層中(例子中的UIView跟自定義圖層繪圖沒有直接關係)。從下面的代碼中能夠看到:UIView在顯示時其根圖層會自動建立一個CGContextRef(CALayer本質使用的是位圖上下文),同時調用圖層代理(UIView建立圖層會自動設置圖層代理爲其自身)的draw: inContext:方法並將圖形上下文做爲參數傳遞給這個方法。而在UIView的draw:inContext:方法中會調用其drawRect:方法,在drawRect:方法中使用UIGraphicsGetCurrentContext()方法獲得的上下文正是前面建立的上下文。

KCLayer.m

  1. // 
  2. //  KCLayer.m 
  3. //  CALayer 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCLayer.h" 
  10.  
  11. @implementation KCLayer 
  12.  
  13. -(void)drawInContext:(CGContextRef)ctx{ 
  14.     NSLog(@"3-drawInContext:"); 
  15.     NSLog(@"CGContext:%@",ctx); 
  16. //    CGContextRotateCTM(ctx, M_PI_4); 
  17.     CGContextSetRGBFillColor(ctx, 135.0/255.0, 232.0/255.0, 84.0/255.0, 1); 
  18.     CGContextSetRGBStrokeColor(ctx, 135.0/255.0, 232.0/255.0, 84.0/255.0, 1); 
  19. //    CGContextFillRect(ctx, CGRectMake(0, 0, 100, 100)); 
  20. //    CGContextFillEllipseInRect(ctx, CGRectMake(50, 50, 100, 100)); 
  21.     CGContextMoveToPoint(ctx, 94.5, 33.5); 
  22.  
  23.     //// Star Drawing 
  24.     CGContextAddLineToPoint(ctx,104.02, 47.39); 
  25.     CGContextAddLineToPoint(ctx,120.18, 52.16); 
  26.     CGContextAddLineToPoint(ctx,109.91, 65.51); 
  27.     CGContextAddLineToPoint(ctx,110.37, 82.34); 
  28.     CGContextAddLineToPoint(ctx,94.5, 76.7); 
  29.     CGContextAddLineToPoint(ctx,78.63, 82.34); 
  30.     CGContextAddLineToPoint(ctx,79.09, 65.51); 
  31.     CGContextAddLineToPoint(ctx,68.82, 52.16); 
  32.     CGContextAddLineToPoint(ctx,84.98, 47.39); 
  33.     CGContextClosePath(ctx); 
  34.  
  35.      
  36.     CGContextDrawPath(ctx, kCGPathFillStroke); 
  37.  
  38. @end 

KCView.m

  1. // 
  2. //  KCView.m 
  3. //  CALayer 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCView.h" 
  10. #import "KCLayer.h" 
  11.  
  12. @implementation KCView 
  13.  
  14. -(instancetype)initWithFrame:(CGRect)frame{ 
  15.     NSLog(@"initWithFrame:"); 
  16.     if (self=[super initWithFrame:frame]) { 
  17.         KCLayer *layer=[[KCLayer alloc]init]; 
  18.         layer.bounds=CGRectMake(0, 0, 185, 185); 
  19.         layer.position=CGPointMake(160,284); 
  20.         layer.backgroundColor=[UIColor colorWithRed:0 green:146/255.0 blue:1.0 alpha:1.0].CGColor; 
  21.          
  22.         //顯示圖層 
  23.         [layer setNeedsDisplay]; 
  24.          
  25.         [self.layer addSublayer:layer]; 
  26.     } 
  27.     return self; 
  28.  
  29. -(void)drawRect:(CGRect)rect{ 
  30.     NSLog(@"2-drawRect:"); 
  31.     NSLog(@"CGContext:%@",UIGraphicsGetCurrentContext());//獲得的當前圖形上下文正是drawLayer中傳遞的 
  32.     [super drawRect:rect]; 
  33.      
  34.  
  35. -(void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx{ 
  36.     NSLog(@"1-drawLayer:inContext:"); 
  37.     NSLog(@"CGContext:%@",ctx); 
  38.     [super drawLayer:layer inContext:ctx]; 
  39.      
  40.  
  41. @end 

KCMainViewController.m

  1. // 
  2. //  KCMainViewController.m 
  3. //  CALayer 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #import "KCView.h" 
  11.  
  12. @interface KCMainViewController () 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     KCView *view=[[KCView alloc]initWithFrame:[UIScreen mainScreen].bounds]; 
  22.     view.backgroundColor=[UIColor colorWithRed:249.0/255.0 green:249.0/255.0 blue:249.0/255.0 alpha:1]; 
  23.      
  24.      
  25.     [self.view addSubview:view]; 
  26.  
  27. @end 

運行效果

Core Animation

你們都知道在iOS中實現一個動畫至關簡單,只要調用UIView的塊代碼便可實現一個動畫效果,這在其餘系統開發中基本不可能實現。下面經過一個簡單的UIView進行一個圖片放大動畫效果演示:

  1. // 
  2. //  KCMainViewController.m 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController () 
  12.  
  13. @end 
  14.  
  15. @implementation KCMainViewController 
  16.  
  17. - (void)viewDidLoad { 
  18.     [super viewDidLoad]; 
  19.      
  20.     UIImage *image=[UIImage imageNamed:@"open2.png"]; 
  21.     UIImageView *imageView=[[UIImageView alloc]init]; 
  22.     imageView.image=image; 
  23.     imageView.frame=CGRectMake(120, 140, 80, 80); 
  24.     [self.view addSubview:imageView]; 
  25.      
  26.     //兩秒後開始一個持續一分鐘的動畫 
  27.     [UIView animateWithDuration:1 delay:2 options:UIViewAnimationOptionBeginFromCurrentState animations:^{ 
  28.         imageView.frame=CGRectMake(80, 100, 160, 160); 
  29.     } completion:nil]; 
  30. @end 

使用上面UIView封裝的方法進行動畫設置當然十分方便,可是具體動畫如何實現咱們是不清楚的,並且上面的代碼還有一些問題是沒法解決的,例如:如何控制動畫的暫停?如何進行動畫的組合?

這裏就須要瞭解iOS的核心動畫Core Animation(包含在Quartz Core框架中)。在iOS中核心動畫分爲幾類:基礎動畫、關鍵幀動畫、動畫組、轉場動畫。各個類的關係大體以下:

CAAnimation:核心動畫的基礎類,不能直接使用,負責動畫運行時間、速度的控制,自己實現了CAMediaTiming協議。

CAPropertyAnimation:屬性動畫的基類(經過屬性進行動畫設置,注意是可動畫屬性),不能直接使用。

CAAnimationGroup:動畫組,動畫組是一種組合模式設計,能夠經過動畫組來進行全部動畫行爲的統一控制,組中全部動畫效果能夠併發執行。

CATransition:轉場動畫,主要經過濾鏡進行動畫效果設置。

CABasicAnimation:基礎動畫,經過屬性修改進行動畫參數控制,只有初始狀態和結束狀態。

CAKeyframeAnimation:關鍵幀動畫,一樣是經過屬性進行動畫參數控制,可是同基礎動畫不一樣的是它能夠有多個狀態控制。

基礎動畫、關鍵幀動畫都屬於屬性動畫,就是經過修改屬性值產生動畫效果,開發人員只須要設置初始值和結束值,中間的過程動畫(又叫「補間動畫」)由系統自動計算產生。和基礎動畫不一樣的是關鍵幀動畫能夠設置多個屬性值,每兩個屬性中間的補間動畫由系統自動完成,所以從這個角度而言基礎動畫又能夠當作是有兩個關鍵幀的關鍵幀動畫。

基礎動畫

在開發過程當中不少狀況下經過基礎動畫就能夠知足開發需求,前面例子中使用的UIView代碼塊進行圖像放大縮小的演示動畫也是基礎動畫(在iOS7中UIView也對關鍵幀動畫進行了封裝),只是UIView裝飾方法隱藏了更多的細節。若是不使用UIView封裝的方法,動畫建立通常分爲如下幾步:

1.初始化動畫並設置動畫屬性

2.設置動畫屬性初始值(能夠省略)、結束值以及其餘動畫屬性

3.給圖層添加動畫

下面以一個移動動畫爲例進行演示,在這個例子中點擊屏幕哪一個位置落花將飛向哪裏。

  1. // 
  2. //  KCMainViewController.m 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     CALayer *_layer; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //設置背景(注意這個圖片其實在根圖層) 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.      
  25.     //自定義一個圖層 
  26.     _layer=[[CALayer alloc]init]; 
  27.     _layer.bounds=CGRectMake(0, 0, 10, 20); 
  28.     _layer.position=CGPointMake(50, 150); 
  29.     _layer.contents=(id)[UIImage imageNamed:@"petal.png"].CGImage; 
  30.     [self.view.layer addSublayer:_layer]; 
  31.  
  32.  
  33.  
  34. #pragma mark 移動動畫 
  35. -(void)translatonAnimation:(CGPoint)location{ 
  36.     //1.建立動畫並指定動畫屬性 
  37.     CABasicAnimation *basicAnimation=[CABasicAnimation animationWithKeyPath:@"position"]; 
  38.      
  39.     //2.設置動畫屬性初始值和結束值 
  40. //    basicAnimation.fromValue=[NSNumber numberWithInteger:50];//能夠不設置,默認爲圖層初始狀態 
  41.     basicAnimation.toValue=[NSValue valueWithCGPoint:location]; 
  42.      
  43.     //設置其餘動畫屬性 
  44.     basicAnimation.duration=5.0;//動畫時間5秒 
  45.     //basicAnimation.repeatCount=HUGE_VALF;//設置重複次數,HUGE_VALF可看作無窮大,起到循環動畫的效果 
  46.     //    basicAnimation.removedOnCompletion=NO;//運行一次是否移除動畫 
  47.  
  48.      
  49.     //3.添加動畫到圖層,注意key至關於給動畫進行命名,之後得到該動畫時可使用此名稱獲取 
  50.     [_layer addAnimation:basicAnimation forKey:@"KCBasicAnimation_Translation"]; 
  51.  
  52. #pragma mark 點擊事件 
  53. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ 
  54.     UITouch *touch=touches.anyObject; 
  55.     CGPoint location= [touch locationInView:self.view]; 
  56.     //建立並開始動畫 
  57.     [self translatonAnimation:location]; 
  58.  
  59. @end 

運行效果

上面實現了一個基本動畫效果,可是這個動畫存在一個問題:動畫結束後動畫圖層回到了原來的位置,固然是用UIView封裝的方法是沒有這個問題的。如何解決這個問題呢?

前面說過圖層動畫的本質就是將圖層內部的內容轉化爲位圖經硬件操做造成一種動畫效果,其實圖層自己並無任何的變化。上面的動畫中圖層並無由於動畫效果而改變它的位置(對於縮放動畫其大小也是不會改變的),因此動畫完成以後圖層仍是在原來的顯示位置沒有任何變化,若是這個圖層在一個UIView中你會發如今UIView移動過程當中你要觸發UIView的點擊事件也只能點擊原來的位置(即便它已經運動到了別的位置),由於它的位置歷來沒有變過。固然解決這個問題方法比較多,這裏不妨在動畫完成以後從新設置它的位置。

  1. // 
  2. //  KCMainViewController.m 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     CALayer *_layer; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //設置背景(注意這個圖片其實在根圖層) 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.      
  25.     //自定義一個圖層 
  26.     _layer=[[CALayer alloc]init]; 
  27.     _layer.bounds=CGRectMake(0, 0, 10, 20); 
  28.     _layer.position=CGPointMake(50, 150); 
  29.     _layer.contents=(id)[UIImage imageNamed:@"petal.png"].CGImage; 
  30.     [self.view.layer addSublayer:_layer]; 
  31.  
  32.  
  33.  
  34. #pragma mark 移動動畫 
  35. -(void)translatonAnimation:(CGPoint)location{ 
  36.     //1.建立動畫並指定動畫屬性 
  37.     CABasicAnimation *basicAnimation=[CABasicAnimation animationWithKeyPath:@"position"]; 
  38.      
  39.     //2.設置動畫屬性初始值和結束值 
  40. //    basicAnimation.fromValue=[NSNumber numberWithInteger:50];//能夠不設置,默認爲圖層初始狀態 
  41.     basicAnimation.toValue=[NSValue valueWithCGPoint:location]; 
  42.      
  43.     //設置其餘動畫屬性 
  44.     basicAnimation.duration=5.0;//動畫時間5秒 
  45.     //basicAnimation.repeatCount=HUGE_VALF;//設置重複次數,HUGE_VALF可看作無窮大,起到循環動畫的效果 
  46.     //    basicAnimation.removedOnCompletion=NO;//運行一次是否移除動畫 
  47.     basicAnimation.delegate=self; 
  48.     //存儲當前位置在動畫結束後使用 
  49.     [basicAnimation setValue:[NSValue valueWithCGPoint:location] forKey:@"KCBasicAnimationLocation"]; 
  50.      
  51.     //3.添加動畫到圖層,注意key至關於給動畫進行命名,之後得到該動畫時可使用此名稱獲取 
  52.     [_layer addAnimation:basicAnimation forKey:@"KCBasicAnimation_Translation"]; 
  53.  
  54. #pragma mark 點擊事件 
  55. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ 
  56.     UITouch *touch=touches.anyObject; 
  57.     CGPoint location= [touch locationInView:self.view]; 
  58.     //建立並開始動畫 
  59.     [self translatonAnimation:location]; 
  60.  
  61. #pragma mark - 動畫代理方法 
  62. #pragma mark 動畫開始 
  63. -(void)animationDidStart:(CAAnimation *)anim{ 
  64.     NSLog(@"animation(%@) start.\r_layer.frame=%@",anim,NSStringFromCGRect(_layer.frame)); 
  65.     NSLog(@"%@",[_layer animationForKey:@"KCBasicAnimation_Translation"]);//經過前面的設置的key得到動畫 
  66.  
  67. #pragma mark 動畫結束 
  68. -(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{ 
  69.     NSLog(@"animation(%@) stop.\r_layer.frame=%@",anim,NSStringFromCGRect(_layer.frame)); 
  70.     _layer.position=[[anim valueForKey:@"KCBasicAnimationLocation"] CGPointValue]; 
  71. @end 

上面經過給動畫設置一個代理去監聽動畫的開始和結束事件,在動畫開始前給動畫添加一個自定義屬性「KCBasicAnimationLocation」存儲動畫終點位置,而後在動畫結束後設置動畫的位置爲終點位置。

若是運行上面的代碼你們可能會發現另一個問題,那就是動畫運行完成後會從新從起始點運動到終點。這個問題產生的緣由就是前面提到的,對於非根圖層,設置圖層的可動畫屬性(在動畫結束後從新設置了position,而position是可動畫屬性)會產生動畫效果。解決這個問題有兩種辦法:關閉圖層隱式動畫、設置動畫圖層爲根圖層。顯然這裏不能採起後者,由於根圖層當前已經做爲動畫的背景。

要關閉隱式動畫須要用到動畫事務CATransaction,在事務內將隱式動畫關閉,例如上面的代碼能夠改成:

  1. #pragma mark 動畫結束 
  2. -(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{ 
  3.     NSLog(@"animation(%@) stop.\r_layer.frame=%@",anim,NSStringFromCGRect(_layer.frame)); 
  4.     //開啓事務 
  5.     [CATransaction begin]; 
  6.     //禁用隱式動畫 
  7.     [CATransaction setDisableActions:YES]; 
  8.      
  9.     _layer.position=[[anim valueForKey:@"KCBasicAnimationLocation"] CGPointValue]; 
  10.      
  11.     //提交事務 
  12.     [CATransaction commit]; 

補充

上面經過在animationDidStop中從新設置動畫的位置主要爲了說明隱式動畫關閉和動畫事件之間傳參的內容,有朋友發現這種方式有可能在動畫運行完以後出現從原點瞬間回到終點的過程,最先在調試的時候沒有發現這個問題,這裏感謝這位朋友。其實解決這個問題並不難,首先必須設置fromValue,其次在動畫開始前設置動畫position爲終點位置(固然也必須關閉隱式動畫)。可是這裏主要仍是出於學習的目的,真正開發的時候作平移動畫直接使用隱式動畫便可,沒有必要那麼麻煩。

固然上面的動畫還顯得有些生硬,由於落花飄散的時候可能不只僅是自由落體運動,自己因爲空氣阻力、外界風力還會形成落花在空中的旋轉、搖擺等,這裏不妨給圖層添加一個旋轉的動畫。對於圖層的旋轉前面已經演示過怎麼經過key path設置圖層旋轉的內容了,在這裏須要強調一下,圖層的形變都是基於錨點進行的。例如旋轉,旋轉的中心點就是圖層的錨點。

  1. // 
  2. //  KCMainViewController.m 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     CALayer *_layer; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //設置背景(注意這個圖片其實在根圖層) 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.      
  25.     //自定義一個圖層 
  26.     _layer=[[CALayer alloc]init]; 
  27.     _layer.bounds=CGRectMake(0, 0, 10, 20); 
  28.     _layer.position=CGPointMake(50, 150); 
  29.     _layer.anchorPoint=CGPointMake(0.5, 0.6);//設置錨點 
  30.     _layer.contents=(id)[UIImage imageNamed:@"petal.png"].CGImage; 
  31.     [self.view.layer addSublayer:_layer]; 
  32.  
  33.  
  34.  
  35. #pragma mark 移動動畫 
  36. -(void)translatonAnimation:(CGPoint)location{ 
  37.     //1.建立動畫並指定動畫屬性 
  38.     CABasicAnimation *basicAnimation=[CABasicAnimation animationWithKeyPath:@"position"]; 
  39.      
  40.     //2.設置動畫屬性初始值、結束值 
  41. //    basicAnimation.fromValue=[NSNumber numberWithInteger:50];//能夠不設置,默認爲圖層初始狀態 
  42.     basicAnimation.toValue=[NSValue valueWithCGPoint:location]; 
  43.      
  44.     //設置其餘動畫屬性 
  45.     basicAnimation.duration=5.0;//動畫時間5秒 
  46.     //basicAnimation.repeatCount=HUGE_VALF;//設置重複次數,HUGE_VALF可看作無窮大,起到循環動畫的效果 
  47.     //    basicAnimation.removedOnCompletion=NO;//運行一次是否移除動畫 
  48.     basicAnimation.delegate=self; 
  49.     //存儲當前位置在動畫結束後使用 
  50.     [basicAnimation setValue:[NSValue valueWithCGPoint:location] forKey:@"KCBasicAnimationLocation"]; 
  51.      
  52.     //3.添加動畫到圖層,注意key至關於給動畫進行命名,之後得到該圖層時可使用此名稱獲取 
  53.     [_layer addAnimation:basicAnimation forKey:@"KCBasicAnimation_Translation"]; 
  54.  
  55. #pragma mark 旋轉動畫 
  56. -(void)rotationAnimation{ 
  57.     //1.建立動畫並指定動畫屬性 
  58.     CABasicAnimation *basicAnimation=[CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; 
  59.      
  60.     //2.設置動畫屬性初始值、結束值 
  61. //    basicAnimation.fromValue=[NSNumber numberWithInt:M_PI_2]; 
  62.     basicAnimation.toValue=[NSNumber numberWithFloat:M_PI_2*3]; 
  63.      
  64.     //設置其餘動畫屬性 
  65.     basicAnimation.duration=6.0; 
  66.     basicAnimation.autoreverses=true;//旋轉後再旋轉到原來的位置 
  67.  
  68.      
  69.     //4.添加動畫到圖層,注意key至關於給動畫進行命名,之後得到該動畫時可使用此名稱獲取 
  70.     [_layer addAnimation:basicAnimation forKey:@"KCBasicAnimation_Rotation"]; 
  71.  
  72. #pragma mark 點擊事件 
  73. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ 
  74.     UITouch *touch=touches.anyObject; 
  75.     CGPoint location= [touch locationInView:self.view]; 
  76.     //建立並開始動畫 
  77.     [self translatonAnimation:location]; 
  78.      
  79.     [self rotationAnimation]; 
  80.  
  81. #pragma mark - 動畫代理方法 
  82. #pragma mark 動畫開始 
  83. -(void)animationDidStart:(CAAnimation *)anim{ 
  84.     NSLog(@"animation(%@) start.\r_layer.frame=%@",anim,NSStringFromCGRect(_layer.frame)); 
  85.     NSLog(@"%@",[_layer animationForKey:@"KCBasicAnimation_Translation"]);//經過前面的設置的key得到動畫 
  86.  
  87. #pragma mark 動畫結束 
  88. -(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{ 
  89.     NSLog(@"animation(%@) stop.\r_layer.frame=%@",anim,NSStringFromCGRect(_layer.frame)); 
  90.     //開啓事務 
  91.     [CATransaction begin]; 
  92.     //禁用隱式動畫 
  93.     [CATransaction setDisableActions:YES]; 
  94.      
  95.     _layer.position=[[anim valueForKey:@"KCBasicAnimationLocation"] CGPointValue]; 
  96.      
  97.     //提交事務 
  98.     [CATransaction commit]; 
  99.  
  100. @end 

上面代碼中結合兩種動畫操做,須要注意的是隻給移動動畫設置了代理,在旋轉動畫中並無設置代理,不然代理方法會執行兩遍。因爲旋轉動畫會無限循環執行(上面設置了重複次數無窮大),而且兩個動畫的執行時間沒有必然的關係,這樣一來移動中止後可能還在旋轉,爲了讓移動動畫中止後旋轉動畫,中止就須要使用到動畫的暫停和恢復方法。

核心動畫的運行有一個媒體時間的概念,假設將一個旋轉動畫設置旋轉一週用時60秒的話,那麼當動畫旋轉90度後媒體時間就是15秒。若是此時要將動畫暫停只須要讓媒體時間偏移量設置爲15秒便可,並把動畫運行速度設置爲0使其中止運動。相似的,若是又過了60秒後須要恢復動畫(此時媒體時間爲75秒),這時只要將動畫開始開始時間設置爲當前媒體時間75秒減去暫停時的時間(也就是以前定格動畫時的偏移量)15秒(開始時間=75-15=60秒),那麼動畫就會從新計算60秒後的狀態再開始運行,與此同時將偏移量從新設置爲0而且把運行速度設置1。這個過程當中真正起到暫停動畫和恢復動畫的實際上是動畫速度的調整,媒體時間偏移量以及恢復時的開始時間設置主要爲了讓動畫更加連貫。

下面的代碼演示了移動動畫結束後旋轉動畫暫停,而且當再次點擊動畫時旋轉恢復的過程(注意在移動過程當中若是再次點擊屏幕能夠暫停移動和旋轉動畫,再次點擊能夠恢復兩種動畫。可是當移動結束後觸發了移動動畫的完成事件若是再次點擊屏幕則只能恢復旋轉動畫,由於此時移動動畫已經結束而不是暫停,沒法再恢復)。

  1. // 
  2. //  KCMainViewController.m 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     CALayer *_layer; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //設置背景(注意這個圖片其實在根圖層) 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.      
  25.     //自定義一個圖層 
  26.     _layer=[[CALayer alloc]init]; 
  27.     _layer.bounds=CGRectMake(0, 0, 10, 20); 
  28.     _layer.position=CGPointMake(50, 150); 
  29.     _layer.anchorPoint=CGPointMake(0.5, 0.6);//設置錨點 
  30.     _layer.contents=(id)[UIImage imageNamed:@"petal.png"].CGImage; 
  31.     [self.view.layer addSublayer:_layer]; 
  32.  
  33.  
  34.  
  35. #pragma mark 移動動畫 
  36. -(void)translatonAnimation:(CGPoint)location{ 
  37.     //1.建立動畫並指定動畫屬性 
  38.     CABasicAnimation *basicAnimation=[CABasicAnimation animationWithKeyPath:@"position"]; 
  39.      
  40.     //2.設置動畫屬性初始值、結束值 
  41. //    basicAnimation.fromValue=[NSNumber numberWithInteger:50];//能夠不設置,默認爲圖層初始狀態 
  42.     basicAnimation.toValue=[NSValue valueWithCGPoint:location]; 
  43.      
  44.     //設置其餘動畫屬性 
  45.     basicAnimation.duration=5.0;//動畫時間5秒 
  46. //    basicAnimation.repeatCount=HUGE_VALF;//設置重複次數,HUGE_VALF可看作無窮大,起到循環動畫的效果 
  47.     basicAnimation.removedOnCompletion=NO;//運行一次是否移除動畫 
  48.     basicAnimation.delegate=self; 
  49.     //存儲當前位置在動畫結束後使用 
  50.     [basicAnimation setValue:[NSValue valueWithCGPoint:location] forKey:@"KCBasicAnimationLocation"]; 
  51.      
  52.     //3.添加動畫到圖層,注意key至關於給動畫進行命名,之後得到該圖層時可使用此名稱獲取 
  53.     [_layer addAnimation:basicAnimation forKey:@"KCBasicAnimation_Translation"]; 
  54.  
  55. #pragma mark 旋轉動畫 
  56. -(void)rotationAnimation{ 
  57.     //1.建立動畫並指定動畫屬性 
  58.     CABasicAnimation *basicAnimation=[CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; 
  59.      
  60.     //2.設置動畫屬性初始值、結束值 
  61. //    basicAnimation.fromValue=[NSNumber numberWithInt:M_PI_2]; 
  62.     basicAnimation.toValue=[NSNumber numberWithFloat:M_PI_2*3]; 
  63.      
  64.     //設置其餘動畫屬性 
  65.     basicAnimation.duration=6.0; 
  66.     basicAnimation.autoreverses=true;//旋轉後在旋轉到原來的位置 
  67.     basicAnimation.repeatCount=HUGE_VALF;//設置無限循環 
  68.     basicAnimation.removedOnCompletion=NO; 
  69. //    basicAnimation.delegate=self; 
  70.  
  71.      
  72.     //4.添加動畫到圖層,注意key至關於給動畫進行命名,之後得到該動畫時可使用此名稱獲取 
  73.     [_layer addAnimation:basicAnimation forKey:@"KCBasicAnimation_Rotation"]; 
  74.  
  75. #pragma mark 點擊事件 
  76. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ 
  77.     UITouch *touch=touches.anyObject; 
  78.     CGPoint location= [touch locationInView:self.view]; 
  79.     //判斷是否已常常見過動畫,若是已經建立則再也不建立動畫 
  80.     CAAnimation *animation= [_layer animationForKey:@"KCBasicAnimation_Translation"]; 
  81.     if(animation){ 
  82.         if (_layer.speed==0) { 
  83.             [self animationResume]; 
  84.         }else{ 
  85.             [self animationPause]; 
  86.         } 
  87.     }else{ 
  88.         //建立並開始動畫 
  89.         [self translatonAnimation:location]; 
  90.          
  91.         [self rotationAnimation]; 
  92.     } 
  93.  
  94. #pragma mark 動畫暫停 
  95. -(void)animationPause{ 
  96.     //取得指定圖層動畫的媒體時間,後面參數用於指定子圖層,這裏不須要 
  97.     CFTimeInterval interval=[_layer convertTime:CACurrentMediaTime() fromLayer:nil]; 
  98.     //設置時間偏移量,保證暫停時停留在旋轉的位置 
  99.     [_layer setTimeOffset:interval]; 
  100.     //速度設置爲0,暫停動畫 
  101.     _layer.speed=0; 
  102.  
  103. #pragma mark 動畫恢復 
  104. -(void)animationResume{ 
  105.     //得到暫停的時間 
  106.     CFTimeInterval beginTime= CACurrentMediaTime()- _layer.timeOffset; 
  107.     //設置偏移量 
  108.     _layer.timeOffset=0; 
  109.     //設置開始時間 
  110.     _layer.beginTime=beginTime; 
  111.     //設置動畫速度,開始運動 
  112.     _layer.speed=1.0; 
  113.  
  114. #pragma mark - 動畫代理方法 
  115. #pragma mark 動畫開始 
  116. -(void)animationDidStart:(CAAnimation *)anim{ 
  117.     NSLog(@"animation(%@) start.\r_layer.frame=%@",anim,NSStringFromCGRect(_layer.frame)); 
  118.     NSLog(@"%@",[_layer animationForKey:@"KCBasicAnimation_Translation"]);//經過前面的設置的key得到動畫 
  119.  
  120. #pragma mark 動畫結束 
  121. -(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{ 
  122.     NSLog(@"animation(%@) stop.\r_layer.frame=%@",anim,NSStringFromCGRect(_layer.frame)); 
  123.      
  124.     //開啓事務 
  125.     [CATransaction begin]; 
  126.     //禁用隱式動畫 
  127.     [CATransaction setDisableActions:YES]; 
  128.      
  129.     _layer.position=[[anim valueForKey:@"KCBasicAnimationLocation"] CGPointValue]; 
  130.      
  131.     //提交事務 
  132.     [CATransaction commit]; 
  133.      
  134.     //暫停動畫 
  135.     [self animationPause]; 
  136.  
  137.  
  138. @end 

運行效果

注意:

動畫暫停針對的是圖層而不是圖層中的某個動畫。

要作無限循環的動畫,動畫的removedOnCompletion屬性必須設置爲NO,不然運行一次動畫就會銷燬。

關鍵幀動畫

熟悉flash開發的朋友對於關鍵幀動畫應該不陌生,這種動畫方式在flash開發中常常用到。關鍵幀動畫就是在動畫控制過程當中開發者指定主要的動畫狀態,至於各個狀態間動畫如何進行則由系統自動運算補充(每兩個關鍵幀之間系統造成的動畫稱爲「補間動畫」),這種動畫的好處就是開發者不用逐個控制每一個動畫幀,而只要關心幾個關鍵幀的狀態便可。

關鍵幀動畫開發分爲兩種形式:一種是經過設置不一樣的屬性值進行關鍵幀控制,另外一種是經過繪製路徑進行關鍵幀控制。後者優先級高於前者,若是設置了路徑則屬性值就再也不起做用。

對於前面的落花動畫效果而言其實落花的過程並不天然,很顯然實際生活中它不可能沿着直線下落,這裏咱們不妨經過關鍵幀動畫的values屬性控制它在下落過程當中的屬性。假設下落過程如圖:

 
在這裏須要設置四個關鍵幀(如圖中四個關鍵點),具體代碼以下(動畫建立過程同基本動畫基本徹底一致):
  1. // 
  2. //  經過values設置關鍵幀動畫 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     CALayer *_layer; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //設置背景(注意這個圖片其實在根圖層) 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.  
  25.     //自定義一個圖層 
  26.     _layer=[[CALayer alloc]init]; 
  27.     _layer.bounds=CGRectMake(0, 0, 10, 20); 
  28.     _layer.position=CGPointMake(50, 150); 
  29.     _layer.contents=(id)[UIImage imageNamed:@"petal.png"].CGImage; 
  30.     [self.view.layer addSublayer:_layer]; 
  31.      
  32.     //建立動畫 
  33.     [self translationAnimation]; 
  34.  
  35. #pragma mark 關鍵幀動畫 
  36. -(void)translationAnimation{ 
  37.     //1.建立關鍵幀動畫並設置動畫屬性 
  38.     CAKeyframeAnimation *keyframeAnimation=[CAKeyframeAnimation animationWithKeyPath:@"position"]; 
  39.      
  40.     //2.設置關鍵幀,這裏有四個關鍵幀 
  41.     NSValue *key1=[NSValue valueWithCGPoint:_layer.position];//對於關鍵幀動畫初始值不能省略 
  42.     NSValue *key2=[NSValue valueWithCGPoint:CGPointMake(80, 220)]; 
  43.     NSValue *key3=[NSValue valueWithCGPoint:CGPointMake(45, 300)]; 
  44.     NSValue *key4=[NSValue valueWithCGPoint:CGPointMake(55, 400)]; 
  45.     NSArray *values=@[key1,key2,key3,key4]; 
  46.     keyframeAnimation.values=values; 
  47.     //設置其餘屬性 
  48.     keyframeAnimation.duration=8.0; 
  49.     keyframeAnimation.beginTime=CACurrentMediaTime()+2;//設置延遲2秒執行 
  50.      
  51.      
  52.     //3.添加動畫到圖層,添加動畫後就會執行動畫 
  53.     [_layer addAnimation:keyframeAnimation forKey:@"KCKeyframeAnimation_Position"]; 
  54.  
  55. @end 

運行效果(注意運行結束沒有設置圖層位置爲動畫運動結束位置):

上面的方式當然比前面使用基礎動畫效果要好一些,但其實仍是存在問題,那就是落花飛落的路徑是直線的,固然這個直線是根據程序中設置的四個關鍵幀自動造成的,那麼如何讓它沿着曲線飄落呢?這就是第二種類型的關鍵幀動畫,經過描繪路徑進行關鍵幀動畫控制。假設讓落花沿着下面的曲線路徑飄落:

 
固然,這是一條貝塞爾曲線,學習了前篇文章以後相信對於這類曲線應該並不陌生,下面是具體實現代碼:
  1. // 
  2. //  經過path設置關鍵幀動畫 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     CALayer *_layer; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //設置背景(注意這個圖片其實在根圖層) 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.      
  25.     //自定義一個圖層 
  26.     _layer=[[CALayer alloc]init]; 
  27.     _layer.bounds=CGRectMake(0, 0, 10, 20); 
  28.     _layer.position=CGPointMake(50, 150); 
  29.     _layer.contents=(id)[UIImage imageNamed:@"petal.png"].CGImage; 
  30.     [self.view.layer addSublayer:_layer]; 
  31.      
  32.     //建立動畫 
  33.     [self translationAnimation]; 
  34.  
  35. #pragma mark 關鍵幀動畫 
  36. -(void)translationAnimation{ 
  37.     //1.建立關鍵幀動畫並設置動畫屬性 
  38.     CAKeyframeAnimation *keyframeAnimation=[CAKeyframeAnimation animationWithKeyPath:@"position"]; 
  39.      
  40.     //2.設置路徑 
  41.     //繪製貝塞爾曲線 
  42.     CGPathRef path=CGPathCreateMutable(); 
  43.     CGPathMoveToPoint(path, NULL, _layer.position.x, _layer.position.y);//移動到起始點 
  44.     CGPathAddCurveToPoint(path, NULL, 160, 280, -30, 300, 55, 400);//繪製二次貝塞爾曲線 
  45.  
  46.     keyframeAnimation.path=path;//設置path屬性 
  47.     CGPathRelease(path);//釋放路徑對象 
  48.     //設置其餘屬性 
  49.     keyframeAnimation.duration=8.0; 
  50.     keyframeAnimation.beginTime=CACurrentMediaTime()+5;//設置延遲2秒執行 
  51.      
  52.      
  53.     //3.添加動畫到圖層,添加動畫後就會執行動畫 
  54.     [_layer addAnimation:keyframeAnimation forKey:@"KCKeyframeAnimation_Position"]; 
  55.  
  56. @end 

運行效果(注意運行結束沒有設置圖層位置爲動畫運動結束位置):

看起來動畫不會那麼生硬了,可是這裏須要注意,對於路徑類型的關鍵幀動畫系統是從描繪路徑的位置開始路徑,直到路徑結束。若是上面的路徑不是貝塞爾曲線而是矩形路徑那麼它會從矩形的左上角開始運行,順時針一週回到左上角;若是指定的路徑是一個橢圓,那麼動畫運行的路徑是從橢圓右側開始(0度)順時針一週回到右側。

補充--其餘屬性

在關鍵幀動畫中還有一些動畫屬性初學者每每比較容易混淆,這裏專門針對這些屬性作一下介紹。

keyTimes:各個關鍵幀的時間控制。前面使用values設置了四個關鍵幀,默認狀況下每兩幀之間的間隔爲:8/(4-1)秒。若是想要控制動畫從第一幀到第二針佔用時間4秒,從第二幀到第三幀時間爲2秒,而從第三幀到第四幀時間2秒的話,就能夠經過keyTimes進行設置。keyTimes中存儲的是時間佔用比例點,此時能夠設置keyTimes的值爲0.0,0.5,0.75,1.0(固然必須轉換爲NSNumber),也就是說1到2幀運行到總時間的50%,2到3幀運行到總時間的75%,3到4幀運行到8秒結束。

caculationMode:動畫計算模式。還拿上面keyValues動畫舉例,之因此1到2幀能造成連貫性動畫而不是直接從第1幀通過8/3秒到第2幀是由於動畫模式是連續的(值爲kCAAnimationLinear,這是計算模式的默認值);而若是指定了動畫模式爲kCAAnimationDiscrete離散的那麼你會看到動畫從第1幀通過8/3秒直接到第2幀,中間沒有任何過渡。其餘動畫模式還有:kCAAnimationPaced(均勻執行,會忽略keyTimes)、kCAAnimationCubic(平滑執行,對於位置變更關鍵幀動畫運行軌跡更平滑)、kCAAnimationCubicPaced(平滑均勻執行)。

下圖描繪出了幾種動畫模式的關係(橫座標是運行時間,縱座標是動畫屬性[例如位置、透明度等]):

動畫組
實際開發中一個物體的運動每每是複合運動,單一屬性的運動狀況比較少,但偏偏屬性動畫每次進行動畫設置時一次只能設置一個屬性進行動畫控制(無論是基礎動畫仍是關鍵幀動畫都是如此),這樣一來要作一個複合運動的動畫就必須建立多個屬性動畫進行組合。對於一兩種動畫的組合或許處理起來還比較容易,可是對於更多動畫的組合控制每每會變得很麻煩,動畫組的產生就是基於這樣一種狀況而產生的。動畫組是一系列動畫的組合,凡是添加到動畫組中的動畫都受控於動畫組,這樣一來各種動畫公共的行爲就能夠統一進行控制而沒必要單獨設置,並且放到動畫組中的各個動畫能夠併發執行,共同構建出複雜的動畫效果。
 
動畫組使用起來並不複雜,首先單首創建單個動畫(能夠是基礎動畫也能夠是關鍵幀動畫),而後將基礎動畫添加到動畫組,最後將動畫組添加到圖層便可。
 
前面關鍵幀動畫部分,路徑動畫看起來效果雖然很流暢,可是落花自己的旋轉運動沒有了,這裏不妨將基礎動畫部分的旋轉動畫和路徑關鍵幀動畫進行組合使得整個動畫看起來更加的和諧、順暢。
  1. // 
  2. //  動畫組 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     CALayer *_layer; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //設置背景(注意這個圖片其實在根圖層) 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.      
  25.     //自定義一個圖層 
  26.     _layer=[[CALayer alloc]init]; 
  27.     _layer.bounds=CGRectMake(0, 0, 10, 20); 
  28.     _layer.position=CGPointMake(50, 150); 
  29.     _layer.contents=(id)[UIImage imageNamed:@"petal.png"].CGImage; 
  30.     [self.view.layer addSublayer:_layer]; 
  31.      
  32.     //建立動畫 
  33.     [self groupAnimation]; 
  34.  
  35. #pragma mark 基礎旋轉動畫 
  36. -(CABasicAnimation *)rotationAnimation{ 
  37.  
  38.     CABasicAnimation *basicAnimation=[CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; 
  39.  
  40.     CGFloat toValue=M_PI_2*3; 
  41.     basicAnimation.toValue=[NSNumber numberWithFloat:M_PI_2*3]; 
  42.  
  43. //    basicAnimation.duration=6.0; 
  44.     basicAnimation.autoreverses=true; 
  45.     basicAnimation.repeatCount=HUGE_VALF; 
  46.     basicAnimation.removedOnCompletion=NO; 
  47.      
  48.     [basicAnimation setValue:[NSNumber numberWithFloat:toValue] forKey:@"KCBasicAnimationProperty_ToValue"]; 
  49.      
  50.     return basicAnimation; 
  51.  
  52. #pragma mark 關鍵幀移動動畫 
  53. -(CAKeyframeAnimation *)translationAnimation{ 
  54.     CAKeyframeAnimation *keyframeAnimation=[CAKeyframeAnimation animationWithKeyPath:@"position"]; 
  55.      
  56.     CGPoint endPoint= CGPointMake(55, 400); 
  57.     CGPathRef path=CGPathCreateMutable(); 
  58.     CGPathMoveToPoint(path, NULL, _layer.position.x, _layer.position.y); 
  59.     CGPathAddCurveToPoint(path, NULL, 160, 280, -30, 300, endPoint.x, endPoint.y); 
  60.      
  61.     keyframeAnimation.path=path; 
  62.     CGPathRelease(path); 
  63.  
  64.     [keyframeAnimation setValue:[NSValue valueWithCGPoint:endPoint] forKey:@"KCKeyframeAnimationProperty_EndPosition"]; 
  65.      
  66.     return keyframeAnimation; 
  67.  
  68. #pragma mark 建立動畫組 
  69. -(void)groupAnimation{ 
  70.     //1.建立動畫組 
  71.     CAAnimationGroup *animationGroup=[CAAnimationGroup animation]; 
  72.      
  73.     //2.設置組中的動畫和其餘屬性 
  74.     CABasicAnimation *basicAnimation=[self rotationAnimation]; 
  75.     CAKeyframeAnimation *keyframeAnimation=[self translationAnimation]; 
  76.     animationGroup.animations=@[basicAnimation,keyframeAnimation]; 
  77.      
  78.     animationGroup.delegate=self; 
  79.     animationGroup.duration=10.0;//設置動畫時間,若是動畫組中動畫已經設置過動畫屬性則再也不生效 
  80.     animationGroup.beginTime=CACurrentMediaTime()+5;//延遲五秒執行 
  81.      
  82.     //3.給圖層添加動畫 
  83.     [_layer addAnimation:animationGroup forKey:nil]; 
  84.  
  85. #pragma mark - 代理方法 
  86. #pragma mark 動畫完成 
  87. -(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{ 
  88.     CAAnimationGroup *animationGroup=(CAAnimationGroup *)anim; 
  89.     CABasicAnimation *basicAnimation=animationGroup.animations[0]; 
  90.     CAKeyframeAnimation *keyframeAnimation=animationGroup.animations[1]; 
  91.     CGFloat toValue=[[basicAnimation valueForKey:@"KCBasicAnimationProperty_ToValue"] floatValue]; 
  92.     CGPoint endPoint=[[keyframeAnimation valueForKey:@"KCKeyframeAnimationProperty_EndPosition"] CGPointValue]; 
  93.      
  94.     [CATransaction begin]; 
  95.     [CATransaction setDisableActions:YES]; 
  96.      
  97.     //設置動畫最終狀態 
  98.     _layer.position=endPoint; 
  99.     _layer.transform=CATransform3DMakeRotation(toValue, 0, 0, 1); 
  100.      
  101.     [CATransaction commit]; 
  102.  
  103. @end 

運行效果

 

轉場動畫

轉場動畫就是從一個場景以動畫的形式過渡到另外一個場景。轉場動畫的使用通常分爲如下幾個步驟:

1.建立轉場動畫

2.設置轉場類型、子類型(可選)及其餘屬性

3.設置轉場後的新視圖並添加動畫到圖層

下表列出了經常使用的轉場類型(注意私有API是蘋果官方沒有公開的動畫類型,可是目前經過仍然可使用):

另外對於支持方向設置的動畫類型還包含子類型:

 在前面的文章「iOS開發系列--無限循環的圖片瀏覽器」中爲了使用UIScrollView作無限循環圖片瀏覽器花費了很多時間在性能優化上面,這裏使用轉場動畫利用一個UIImageView實現一個漂亮的無限循環圖片瀏覽器。

  1. // 
  2. //  KCMainViewController.m 
  3. //  TransitionAnimation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-12. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #define IMAGE_COUNT 5 
  11.  
  12. @interface KCMainViewController (){ 
  13.     UIImageView *_imageView; 
  14.     int _currentIndex; 
  15.  
  16. @end 
  17.  
  18. @implementation KCMainViewController 
  19.  
  20. - (void)viewDidLoad { 
  21.     [super viewDidLoad]; 
  22.      
  23.     //定義圖片控件 
  24.     _imageView=[[UIImageView alloc]init]; 
  25.     _imageView.frame=[UIScreen mainScreen].applicationFrame; 
  26.     _imageView.contentMode=UIViewContentModeScaleAspectFit; 
  27.     _imageView.image=[UIImage imageNamed:@"0.jpg"];//默認圖片 
  28.     [self.view addSubview:_imageView]; 
  29.     //添加手勢 
  30.     UISwipeGestureRecognizer *leftSwipeGesture=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(leftSwipe:)]; 
  31.     leftSwipeGesture.direction=UISwipeGestureRecognizerDirectionLeft; 
  32.     [self.view addGestureRecognizer:leftSwipeGesture]; 
  33.      
  34.     UISwipeGestureRecognizer *rightSwipeGesture=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(rightSwipe:)]; 
  35.     rightSwipeGesture.direction=UISwipeGestureRecognizerDirectionRight; 
  36.     [self.view addGestureRecognizer:rightSwipeGesture]; 
  37.  
  38. #pragma mark 向左滑動瀏覽下一張圖片 
  39. -(void)leftSwipe:(UISwipeGestureRecognizer *)gesture{ 
  40.     [self transitionAnimation:YES]; 
  41.  
  42. #pragma mark 向右滑動瀏覽上一張圖片 
  43. -(void)rightSwipe:(UISwipeGestureRecognizer *)gesture{ 
  44.     [self transitionAnimation:NO]; 
  45.  
  46.  
  47. #pragma mark 轉場動畫 
  48. -(void)transitionAnimation:(BOOL)isNext{ 
  49.     //1.建立轉場動畫對象 
  50.     CATransition *transition=[[CATransition alloc]init]; 
  51.      
  52.     //2.設置動畫類型,注意對於蘋果官方沒公開的動畫類型只能使用字符串,並無對應的常量定義 
  53.     transition.type=@"cube"; 
  54.      
  55.     //設置子類型 
  56.     if (isNext) { 
  57.         transition.subtype=kCATransitionFromRight; 
  58.     }else{ 
  59.         transition.subtype=kCATransitionFromLeft; 
  60.     } 
  61.     //設置動畫時常 
  62.     transition.duration=1.0f; 
  63.      
  64.     //3.設置轉場後的新視圖添加轉場動畫 
  65.     _imageView.image=[self getImage:isNext]; 
  66.     [_imageView.layer addAnimation:transition forKey:@"KCTransitionAnimation"]; 
  67.  
  68. #pragma mark 取得當前圖片 
  69. -(UIImage *)getImage:(BOOL)isNext{ 
  70.     if (isNext) { 
  71.         _currentIndex=(_currentIndex+1)%IMAGE_COUNT; 
  72.     }else{ 
  73.         _currentIndex=(_currentIndex-1+IMAGE_COUNT)%IMAGE_COUNT; 
  74.     } 
  75.     NSString *imageName=[NSString stringWithFormat:@"%i.jpg",_currentIndex]; 
  76.     return [UIImage imageNamed:imageName]; 
  77. @end 

運行效果

代碼十分簡單,可是效果和性能卻很驚人。固然演示代碼有限,其餘動畫類型你們能夠本身實現,效果都很絢麗。

逐幀動畫

前面介紹了核心動畫中大部分動畫類型,可是作過動畫處理的朋友都知道,在動畫製做中還有一種動畫類型「逐幀動畫」。說到逐幀動畫相信不少朋友第一個想到的就是UIImageView,經過設置UIImageView的animationImages屬性,而後調用它的startAnimating方法去播放這組圖片。固然這種方法在某些場景下是能夠達到逐幀的動畫效果,可是它也存在着很大的性能問題,而且這種方法一旦設置完圖片中間的過程就沒法控制了。固然,也許有朋友會想到利用iOS的定時器NSTimer定時更新圖片來達到逐幀動畫的效果。這種方式確實能夠解決UIImageView一次性加載大量圖片的問題,並且讓播放過程可控,惟一的缺點就是定時器方法調用有時可能會由於當前系統執行某種比較佔用時間的任務形成動畫連續性出現問題。

雖然在覈心動畫沒有直接提供逐幀動畫類型,可是卻提供了用於完成逐幀動畫的相關對象CADisplayLink。CADisplayLink是一個計時器,可是同NSTimer不一樣的是,CADisplayLink的刷新週期同屏幕徹底一致。例如在iOS中屏幕刷新週期是60次/秒,CADisplayLink刷新週期同屏幕刷新一致也是60次/秒,這樣一來使用它完成的逐幀動畫(又稱爲「時鐘動畫」)徹底感受不到動畫的停滯狀況。

在iOS開篇「IOS開發系列--IOS程序開發概覽」中就曾說過:iOS程序在運行後就進入一個消息循環中(這個消息循環稱爲「主運行循環」),整個程序至關於進入一個死循環中,始終等待用戶輸入。將CADisplayLink加入到主運行循環隊列後,它的時鐘週期就和主運行循環保持一致,而主運行循環週期就是屏幕刷新週期。在CADisplayLink加入到主運行循環隊列後就會循環調用目標方法,在這個方法中更新視圖內容就能夠完成逐幀動畫。

固然這裏不得不強調的是逐幀動畫性能勢必較低,可是對於一些事物的運動又不得不選擇使用逐幀動畫,例如人的運動,這是一個高度複雜的運動,基本動畫、關鍵幀動畫是不可能解決的。所你們必定要注意在循環方法中儘量的下降算法複雜度,同時保證循環過程當中內存峯值儘量低。下面以一個魚的運動爲例爲你們演示一下逐幀動畫。

  1. // 
  2. //  KCMainViewController.m 
  3. //  DisplayLink 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #define IMAGE_COUNT 10 
  11.  
  12. @interface KCMainViewController (){ 
  13.     CALayer *_layer; 
  14.     int _index; 
  15.     NSMutableArray *_images; 
  16.  
  17. @end 
  18.  
  19. @implementation KCMainViewController 
  20.  
  21. - (void)viewDidLoad { 
  22.     [super viewDidLoad]; 
  23.      
  24.     //設置背景 
  25.     self.view.layer.contents=(id)[UIImage imageNamed:@"bg.png"].CGImage; 
  26.      
  27.     //建立圖像顯示圖層 
  28.     _layer=[[CALayer alloc]init]; 
  29.     _layer.bounds=CGRectMake(0, 0, 87, 32); 
  30.     _layer.position=CGPointMake(160, 284); 
  31.     [self.view.layer addSublayer:_layer]; 
  32.      
  33.     //因爲魚的圖片在循環中會不斷建立,而10張魚的照片相對都很小 
  34.     //與其在循環中不斷建立UIImage不如直接將10張圖片緩存起來 
  35.     _images=[NSMutableArray array]; 
  36.     for (int i=0; i<10; ++i) { 
  37.         NSString *imageName=[NSString stringWithFormat:@"fish%i.png",i]; 
  38.         UIImage *image=[UIImage imageNamed:imageName]; 
  39.         [_images addObject:image]; 
  40.     } 
  41.  
  42.      
  43.     //定義時鐘對象 
  44.     CADisplayLink *displayLink=[CADisplayLink displayLinkWithTarget:self selector:@selector(step)]; 
  45.     //添加時鐘對象到主運行循環 
  46.     [displayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSDefaultRunLoopMode]; 
  47.  
  48. #pragma mark 每次屏幕刷新就會執行一次此方法(每秒接近60次) 
  49. -(void)step{ 
  50.     //定義一個變量記錄執行次數 
  51.     static int s=0; 
  52.     //每秒執行6次 
  53.     if (++s%10==0) { 
  54.         UIImage *image=_images[_index]; 
  55.         _layer.contents=(id)image.CGImage;//更新圖片 
  56.         _index=(_index+1)%IMAGE_COUNT; 
  57.     } 
  58. @end 

運行效果

注意:上面僅僅演示了逐幀動畫的過程,事實上結合其餘動畫類型可讓整條魚遊動起來,這裏再也不贅述。
 
UIView動畫封裝
有了前面核心動畫的知識,相信你們開發出通常的動畫效果應該不在話下。在覈心動畫開篇也給你們說過,其實UIView自己對於基本動畫和關鍵幀動畫、轉場動畫都有相應的封裝,在對動畫細節沒有特殊要求的狀況下使用起來也要簡單的多。能夠說在平常開發中90%以上的狀況使用UIView的動畫封裝方法均可以搞定,所以在熟悉了核心動畫的原理以後仍是有必要給你們簡單介紹一下UIView中各種動畫使用方法的。因爲前面核心動畫內容已經進行過詳細介紹,學習UIView的封裝方法根本是小菜一碟,這裏對於一些細節就再也不贅述了。
 
基礎動畫
基礎動畫部分和前面的基礎動畫演示相對應,演示點擊屏幕落葉飄落到鼠標點擊位置的過程。注意根據前面介紹的隱式動畫知識其實非根圖層直接設置終點位置不須要使用UIView的動畫方法也能夠實現動畫效果,所以這裏落花再也不放到圖層中而是放到了一個UIImageView中。
 
下面的代碼演示了經過block和靜態方法實現動畫控制的過程:
  1. // 
  2. //  UIView實現基礎動畫 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     UIImageView *_imageView; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.  
  21.     //設置背景 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.  
  25.     //建立圖像顯示控件 
  26.     _imageView=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"petal.png"]]; 
  27.     _imageView.center=CGPointMake(50, 150); 
  28.     [self.view addSubview:_imageView]; 
  29.  
  30. #pragma mark 點擊事件 
  31. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ 
  32.     UITouch *touch=touches.anyObject; 
  33.     CGPoint location= [touch locationInView:self.view]; 
  34.     //方法1:block方式 
  35.     /*開始動畫,UIView的動畫方法執行完後動畫會停留在重點位置,而不須要進行任何特殊處理 
  36.      duration:執行時間 
  37.      delay:延遲時間 
  38.      options:動畫設置,例如自動恢復、勻速運動等 
  39.      completion:動畫完成回調方法 
  40.      */ 
  41. //    [UIView animateWithDuration:5.0 delay:0 options:UIViewAnimationOptionCurveLinear animations:^{ 
  42. //        _imageView.center=location; 
  43. //    } completion:^(BOOL finished) { 
  44. //        NSLog(@"Animation end."); 
  45. //    }]; 
  46.      
  47.     //方法2:靜態方法 
  48.     //開始動畫 
  49.     [UIView beginAnimations:@"KCBasicAnimation" context:nil]; 
  50.     [UIView setAnimationDuration:5.0]; 
  51.     //[UIView setAnimationDelay:1.0];//設置延遲 
  52.     //[UIView setAnimationRepeatAutoreverses:NO];//是否回覆 
  53.     //[UIView setAnimationRepeatCount:10];//重複次數 
  54.     //[UIView setAnimationStartDate:(NSDate *)];//設置動畫開始運行的時間 
  55.     //[UIView setAnimationDelegate:self];//設置代理 
  56.     //[UIView setAnimationWillStartSelector:(SEL)];//設置動畫開始運動的執行方法 
  57.     //[UIView setAnimationDidStopSelector:(SEL)];//設置動畫運行結束後的執行方法 
  58.      
  59.     _imageView.center=location; 
  60.      
  61.      
  62.     //開始動畫 
  63.     [UIView commitAnimations]; 
  64. @end 

補充--彈簧動畫效果

因爲在iOS開發中彈性動畫使用很廣泛,因此在iOS7蘋果官方直接提供了一個方法用於彈性動畫開發,下面簡單的演示一下:

  1. // 
  2. //  UIView實現基礎動畫--彈性動畫 
  3. //  Animation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     UIImageView *_imageView; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.  
  21.     //建立圖像顯示控件 
  22.     _imageView=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"ball.png"]]; 
  23.     _imageView.center=CGPointMake(160, 50); 
  24.     [self.view addSubview:_imageView]; 
  25.  
  26. #pragma mark 點擊事件 
  27. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ 
  28.     UITouch *touch=touches.anyObject; 
  29.     CGPoint location= [touch locationInView:self.view]; 
  30.     /*建立彈性動畫 
  31.      damping:阻尼,範圍0-1,阻尼越接近於0,彈性效果越明顯 
  32.      velocity:彈性復位的速度 
  33.     */ 
  34.     [UIView animateWithDuration:5.0 delay:0 usingSpringWithDamping:0.1 initialSpringVelocity:1.0 options:UIViewAnimationOptionCurveLinear animations:^{ 
  35.         _imageView.center=location; //CGPointMake(160, 284); 
  36.     } completion:nil]; 
  37. @end 

運行效果

補充--動畫設置參數
在動畫方法中有一個option參數,UIViewAnimationOptions類型,它是一個枚舉類型,動畫參數分爲三類,能夠組合使用:
1.常規動畫屬性設置(能夠同時選擇多個進行設置)
UIViewAnimationOptionLayoutSubviews:動畫過程當中保證子視圖跟隨運動。
UIViewAnimationOptionAllowUserInteraction:動畫過程當中容許用戶交互。
UIViewAnimationOptionBeginFromCurrentState:全部視圖從當前狀態開始運行。
UIViewAnimationOptionRepeat:重複運行動畫。
UIViewAnimationOptionAutoreverse :動畫運行到結束點後仍然以動畫方式回到初始點。
UIViewAnimationOptionOverrideInheritedDuration:忽略嵌套動畫時間設置。
UIViewAnimationOptionOverrideInheritedCurve:忽略嵌套動畫速度設置。
UIViewAnimationOptionAllowAnimatedContent:動畫過程當中重繪視圖(注意僅僅適用於轉場動畫)。 
UIViewAnimationOptionShowHideTransitionViews:視圖切換時直接隱藏舊視圖、顯示新視圖,而不是將舊視圖從父視圖移除(僅僅適用於轉場動畫)
UIViewAnimationOptionOverrideInheritedOptions :不繼承父動畫設置或動畫類型。
2.動畫速度控制(可從其中選擇一個設置)
UIViewAnimationOptionCurveEaseInOut:動畫先緩慢,而後逐漸加速。
UIViewAnimationOptionCurveEaseIn :動畫逐漸變慢。
UIViewAnimationOptionCurveEaseOut:動畫逐漸加速。
UIViewAnimationOptionCurveLinear :動畫勻速執行,默認值。
3.轉場類型(僅適用於轉場動畫設置,能夠從中選擇一個進行設置,基本動畫、關鍵幀動畫不須要設置)
UIViewAnimationOptionTransitionNone:沒有轉場動畫效果。
UIViewAnimationOptionTransitionFlipFromLeft :從左側翻轉效果。
UIViewAnimationOptionTransitionFlipFromRight:從右側翻轉效果。
UIViewAnimationOptionTransitionCurlUp:向後翻頁的動畫過渡效果。   
UIViewAnimationOptionTransitionCurlDown :向前翻頁的動畫過渡效果。   
UIViewAnimationOptionTransitionCrossDissolve:舊視圖溶解消失顯示下一個新視圖的效果。   
UIViewAnimationOptionTransitionFlipFromTop :從上方翻轉效果。   
UIViewAnimationOptionTransitionFlipFromBottom:從底部翻轉效果。
 
關鍵幀動畫
從iOS7開始UIView動畫中封裝了關鍵幀動畫,下面就來看一下如何使用UIView封裝方法進行關鍵幀動畫控制,這裏實現前面關鍵幀動畫部分對於落花的控制。
  1. // 
  2. //  UIView關鍵幀動畫 
  3. //  UIViewAnimation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-22. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10.  
  11. @interface KCMainViewController (){ 
  12.     UIImageView *_imageView; 
  13.  
  14. @end 
  15.  
  16. @implementation KCMainViewController 
  17.  
  18. - (void)viewDidLoad { 
  19.     [super viewDidLoad]; 
  20.      
  21.     //設置背景 
  22.     UIImage *backgroundImage=[UIImage imageNamed:@"background.jpg"]; 
  23.     self.view.backgroundColor=[UIColor colorWithPatternImage:backgroundImage]; 
  24.  
  25.     //建立圖像顯示控件 
  26.     _imageView=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"petal.png"]]; 
  27.     _imageView.center=CGPointMake(50, 150); 
  28.     [self.view addSubview:_imageView]; 
  29.  
  30. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ 
  31.     //UITouch *touch=touches.anyObject; 
  32.     //CGPoint location= [touch locationInView:self.view]; 
  33.      
  34.     /*關鍵幀動畫 
  35.      options: 
  36.      */ 
  37.     [UIView animateKeyframesWithDuration:5.0 delay:0 options: UIViewAnimationOptionCurveLinear| UIViewAnimationOptionCurveLinear animations:^{ 
  38.         //第二個關鍵幀(準確的說第一個關鍵幀是開始位置):從0秒開始持續50%的時間,也就是5.0*0.5=2.5秒 
  39.         [UIView addKeyframeWithRelativeStartTime:0.0 relativeDuration:0.5 animations:^{ 
  40.             _imageView.center=CGPointMake(80.0, 220.0); 
  41.         }]; 
  42.         //第三個關鍵幀,從0.5*5.0秒開始,持續5.0*0.25=1.25秒 
  43.         [UIView addKeyframeWithRelativeStartTime:0.5 relativeDuration:0.25 animations:^{ 
  44.             _imageView.center=CGPointMake(45.0, 300.0); 
  45.         }]; 
  46.         //第四個關鍵幀:從0.75*5.0秒開始,持所需5.0*0.25=1.25秒 
  47.         [UIView addKeyframeWithRelativeStartTime:0.75 relativeDuration:0.25 animations:^{ 
  48.             _imageView.center=CGPointMake(55.0, 400.0); 
  49.         }]; 
  50.          
  51.     } completion:^(BOOL finished) { 
  52.         NSLog(@"Animation end."); 
  53.     }]; 
  54. @end 

補充--動畫設置參數

對於關鍵幀動畫也有一些動畫參數設置options,UIViewKeyframeAnimationOptions類型,和上面基本動畫參數設置有些差異,關鍵幀動畫設置參數分爲兩類,能夠組合使用:

1.常規動畫屬性設置(能夠同時選擇多個進行設置)

UIViewAnimationOptionLayoutSubviews:動畫過程當中保證子視圖跟隨運動。

UIViewAnimationOptionAllowUserInteraction:動畫過程當中容許用戶交互。

UIViewAnimationOptionBeginFromCurrentState:全部視圖從當前狀態開始運行。

UIViewAnimationOptionRepeat:重複運行動畫。

UIViewAnimationOptionAutoreverse :動畫運行到結束點後仍然以動畫方式回到初始點。

UIViewAnimationOptionOverrideInheritedDuration:忽略嵌套動畫時間設置。

UIViewAnimationOptionOverrideInheritedOptions :不繼承父動畫設置或動畫類型。

2.動畫模式設置(同前面關鍵幀動畫動畫模式一一對應,能夠從其中選擇一個進行設置)

UIViewKeyframeAnimationOptionCalculationModeLinear:連續運算模式。

UIViewKeyframeAnimationOptionCalculationModeDiscrete :離散運算模式。

UIViewKeyframeAnimationOptionCalculationModePaced:均勻執行運算模式。

UIViewKeyframeAnimationOptionCalculationModeCubic:平滑運算模式。

UIViewKeyframeAnimationOptionCalculationModeCubicPaced:平滑均勻運算模式。

注意:前面說過關鍵幀動畫有兩種形式,上面演示的是屬性值關鍵幀動畫,路徑關鍵幀動畫目前UIView還不支持。

轉場動畫

從iOS4.0開始,UIView直接封裝了轉場動畫,使用起來一樣很簡單。

  1. // 
  2. //  UIView轉場動畫 
  3. //  TransitionAnimation 
  4. // 
  5. //  Created by Kenshin Cui on 14-3-12. 
  6. //  Copyright (c) 2014年 Kenshin Cui. All rights reserved. 
  7. // 
  8.  
  9. #import "KCMainViewController.h" 
  10. #define IMAGE_COUNT 5 
  11.  
  12. @interface KCMainViewController (){ 
  13.     UIImageView *_imageView; 
  14.     int _currentIndex; 
  15.  
  16. @end 
  17.  
  18. @implementation KCMainViewController 
  19.  
  20. - (void)viewDidLoad { 
  21.     [super viewDidLoad]; 
  22.      
  23.     //定義圖片控件 
  24.     _imageView=[[UIImageView alloc]init]; 
  25.     _imageView.frame=[UIScreen mainScreen].applicationFrame; 
  26.     _imageView.contentMode=UIViewContentModeScaleAspectFit; 
  27.     _imageView.image=[UIImage imageNamed:@"0.jpg"];//默認圖片 
  28.     [self.view addSubview:_imageView]; 
  29.     //添加手勢 
  30.     UISwipeGestureRecognizer *leftSwipeGesture=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(leftSwipe:)]; 
  31.     leftSwipeGesture.direction=UISwipeGestureRecognizerDirectionLeft; 
  32.     [self.view addGestureRecognizer:leftSwipeGesture]; 
  33.      
  34.     UISwipeGestureRecognizer *rightSwipeGesture=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(rightSwipe:)]; 
  35.     rightSwipeGesture.direction=UISwipeGestureRecognizerDirectionRight; 
  36.     [self.view addGestureRecognizer:rightSwipeGesture]; 
  37.  
  38. #pragma mark 向左滑動瀏覽下一張圖片 
  39. -(void)leftSwipe:(UISwipeGestureRecognizer *)gesture{ 
  40.     [self transitionAnimation:YES]; 
  41.  
  42. #pragma mark 向右滑動瀏覽上一張圖片 
  43. -(void)rightSwipe:(UISwipeGestureRecognizer *)gesture{ 
  44.     [self transitionAnimation:NO]; 
  45.  
  46.  
  47. #pragma mark 轉場動畫 
  48. -(void)transitionAnimation:(BOOL)isNext{ 
  49.     UIViewAnimationOptions option; 
  50.     if (isNext) { 
  51.         option=UIViewAnimationOptionCurveLinear|UIViewAnimationOptionTransitionFlipFromRight; 
  52.     }else{ 
  53.         option=UIViewAnimationOptionCurveLinear|UIViewAnimationOptionTransitionFlipFromLeft; 
  54.     } 
  55.      
  56.     [UIView transitionWithView:_imageView duration:1.0 options:option animations:^{ 
  57.         _imageView.image=[self getImage:isNext]; 
  58.     } completion:nil]; 
  59.  
  60. #pragma mark 取得當前圖片 
  61. -(UIImage *)getImage:(BOOL)isNext{ 
  62.     if (isNext) { 
  63.         _currentIndex=(_currentIndex+1)%IMAGE_COUNT; 
  64.     }else{ 
  65.         _currentIndex=(_currentIndex-1+IMAGE_COUNT)%IMAGE_COUNT; 
  66.     } 
  67.     NSString *imageName=[NSString stringWithFormat:@"%i.jpg",_currentIndex]; 
  68.     return [UIImage imageNamed:imageName]; 
  69. @end 

上面的轉場動畫演示中,其實僅僅有一個視圖UIImageView作轉場動畫,每次轉場經過切換UIImageView的內容而已。若是有兩個徹底不一樣的視圖,而且每一個視圖佈局都很複雜,此時要在這兩個視圖之間進行轉場可使用+ (void)transitionFromView:(UIView *)fromView toView:(UIView *)toView duration:(NSTimeInterval)duration options:(UIViewAnimationOptions)options completion:(void (^)(BOOL finished))completion NS_AVAILABLE_IOS(4_0)方法進行兩個視圖間的轉場,須要注意的是默認狀況下轉出的視圖會從父視圖移除,轉入後從新添加,能夠經過UIViewAnimationOptionShowHideTransitionViews參數設置,設置此參數後轉出的視圖會隱藏(不會移除)轉入後再顯示。

注意:轉場動畫設置參數徹底同基本動畫參數設置;同直接使用轉場動畫不一樣的是使用UIView的裝飾方法進行轉場動畫其動畫效果較少,由於這裏沒法直接使用私有API。

相關文章
相關標籤/搜索