iOS+轉(zhuǎn)場動(dòng)畫學(xué)習(xí)

轉(zhuǎn)場動(dòng)畫學(xué)習(xí)中...TransitionDemo代碼

效果

實(shí)現(xiàn)自定義的轉(zhuǎn)場動(dòng)畫(只涉及自定義動(dòng)畫,不管手勢驅(qū)動(dòng))

涉及三個(gè)協(xié)議:
UIViewControllerAnimatedTransitioning(動(dòng)畫處理)
UIViewControllerTransitioningDelegate(頁面modal時(shí)指定相關(guān)動(dòng)畫代理)
UINavigationControllerDelegate(頁面push/pop時(shí)指定相關(guān)動(dòng)畫代理)

  1. 自定義動(dòng)畫類, 遵守協(xié)議UIViewControllerAnimatedTransitioning并實(shí)現(xiàn)相關(guān)動(dòng)畫(類CircleSpreadAnimation)

     #pragma mark - UIViewControllerAnimatedTransitioning
    
     /** 動(dòng)畫時(shí)長 */
     - (NSTimeInterval)transitionDuration:(nullable id <UIViewControllerContextTransitioning>)transitionContext{
         
         return self.duration;
     }
    
     /** 動(dòng)畫:步驟2、4不能省  */
     - (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext{
         
         // 1.獲取ToVC
         UIViewController *toVC = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
         
         // 2.將ToVC's View 添加到containerView中
         UIView *containerView = [transitionContext containerView];
         [containerView addSubview:toVC.view];
         
         // 3.圓形擴(kuò)散動(dòng)畫厕吉,對ToVC's View進(jìn)行動(dòng)畫處理
         CGSize size = containerView.frame.size;
         CGPoint beginP = CGPointMake(size.width*0.5, size.height);//中下
         switch (self.direction) {
             case CircleSpreadAnimationDirectionDown:
                 beginP = CGPointMake(size.width*0.5, 0);//中上
                 break;
                 
             case CircleSpreadAnimationDirectionRight:
                 beginP = CGPointMake(0, size.height*0.5);//左中
                 break;
                 
             case CircleSpreadAnimationDirectionLeft:
                 beginP = CGPointMake(size.width, size.height*0.5);//右中
                 break;
                 
             default:
                 break;
         }
    
         UIBezierPath *beginPath = [UIBezierPath bezierPathWithArcCenter:beginP radius:1 startAngle:0 endAngle:M_PI*2 clockwise:YES];
    
         CGFloat endX = beginP.x>size.width*0.5? beginP.x : size.width - beginP.x;
         CGFloat endY = beginP.y>size.height*0.5? beginP.y : size.height - beginP.y;
         CGFloat endRadius = sqrt(pow(endX, 2) + pow(endY, 2));
         UIBezierPath *endPath = [UIBezierPath bezierPathWithArcCenter:beginP radius:endRadius startAngle:0 endAngle:M_PI*2 clockwise:YES];
    
         CAShapeLayer *maskLayer = [CAShapeLayer layer];
         maskLayer.path = endPath.CGPath;
         toVC.view.layer.mask = maskLayer;
    
         CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"path"];
         animation.fromValue = (__bridge id )(beginPath.CGPath);
         animation.toValue = (__bridge id )(endPath.CGPath);
         animation.duration = self.duration;
         animation.delegate = self;
         [animation setValue:transitionContext forKey:@"transitionContext"];
         [maskLayer addAnimation:animation forKey:@"pushPath"];
     }
    
     -(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{
         
         id<UIViewControllerContextTransitioning> transitionContext = [anim valueForKey:@"transitionContext"];
         // 4.告知完成
         [transitionContext completeTransition:YES];
     }
    
  2. 自定義轉(zhuǎn)場動(dòng)畫:(相關(guān)類FromViewController蚜点、ToViewController)

    1. 修改轉(zhuǎn)場代理(為簡化阁危,直接讓FromViewController成為轉(zhuǎn)場代理)
      /** 從FromViewController 跳轉(zhuǎn)到 ToViewController捆姜,使FromViewController成為轉(zhuǎn)場代理 */
      - (void)toBtnClicked{

           ToViewController *toVC =  [[ToViewController alloc] init];
           
           // 1.更換動(dòng)畫過渡代理
           // self是FromViewController
           if (self.push) {
               // push時(shí)修改navigationController的代理
               self.navigationController.delegate = self;
               [self.navigationController pushViewController:toVC animated:YES];
           } else {
               // present時(shí)修改transitioningDelegate的代理
               toVC.transitioningDelegate = self;
               [self presentViewController:toVC animated:YES completion:nil];
           }
       }
      
    2. 實(shí)現(xiàn)代理锌俱,返回相關(guān)動(dòng)畫代理實(shí)例;

    3. modal : FromViewController遵守協(xié)議
      UIViewControllerTransitioningDelegate

         #pragma mark - UIViewControllerTransitioningDelegate
      
         // 2.modal方式:指定自定義的動(dòng)畫代理
         - (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source{
          
          // present的時(shí)候的動(dòng)畫代理
          return self.circleAnimationUP;
          
          // nil代表使用默認(rèn)過渡效果
          //return nil;
         }
      
         - (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed{
          
          // dismiss的時(shí)候的動(dòng)畫代理
          return self.circleAnimationDown;
          
          // nil代表使用默認(rèn)過渡效果
          //return nil;
        }
      
    4. push/pop:FromViewController遵守協(xié)議
      UINavigationControllerDelegate

          #pragma mark - UINavigationControllerDelegate
      
          // 2.push/pop方式:指定自定義的動(dòng)畫代理
          - (id<UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController animationControllerForOperation:(UINavigationControllerOperation)operation fromViewController:(UIViewController *)fromVC toViewController:(UIViewController *)toVC{
              
              // 設(shè)置自定義動(dòng)畫
              id<UIViewControllerAnimatedTransitioning> animation = nil;//使用默認(rèn)效果
              
              if (operation == UINavigationControllerOperationPush) {
                  // push的時(shí)候的動(dòng)畫代理
                  animation = self.circleAnimationLeft;
              } else if (operation == UINavigationControllerOperationPop) {
                  // pop的時(shí)候的動(dòng)畫代理
                  animation = self.circleAnimationRight;
              }
              
              // 3.以便在pop到當(dāng)前頁面的時(shí)候恢復(fù)默認(rèn)轉(zhuǎn)場效果
              if (toVC == self) {
                  self.navigationController.delegate = nil;
              }
              
              return animation;
          }
      

參考
WWDC 2013 Session筆記 - iOS7中的ViewController切換
幾句代碼快速集成自定義轉(zhuǎn)場效果+ 全手勢驅(qū)動(dòng)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末永脓,一起剝皮案震驚了整個(gè)濱河市袍辞,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌常摧,老刑警劉巖搅吁,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異落午,居然都是意外死亡谎懦,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門溃斋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來界拦,“玉大人,你說我怎么就攤上這事梗劫∠淼椋” “怎么了?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵梳侨,是天一觀的道長蛉威。 經(jīng)常有香客問我,道長走哺,這世上最難降的妖魔是什么蚯嫌? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮丙躏,結(jié)果婚禮上齐帚,老公的妹妹穿的比我還像新娘。我一直安慰自己彼哼,他們只是感情好对妄,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著敢朱,像睡著了一般剪菱。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上拴签,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天孝常,我揣著相機(jī)與錄音,去河邊找鬼蚓哩。 笑死构灸,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的岸梨。 我是一名探鬼主播喜颁,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼稠氮,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了半开?” 一聲冷哼從身側(cè)響起隔披,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎寂拆,沒想到半個(gè)月后奢米,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡纠永,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年鬓长,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片尝江。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡痢士,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出茂装,到底是詐尸還是另有隱情怠蹂,我是刑警寧澤,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布少态,位于F島的核電站城侧,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏彼妻。R本人自食惡果不足惜嫌佑,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望侨歉。 院中可真熱鬧屋摇,春花似錦、人聲如沸幽邓。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽牵舵。三九已至柒啤,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間畸颅,已是汗流浹背担巩。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留没炒,地道東北人涛癌。 一個(gè)月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親拳话。 傳聞我的和親對象是個(gè)殘疾皇子先匪,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容