iOS開(kāi)發(fā)-定制屬于你自己的酷炫轉(zhuǎn)場(chǎng)動(dòng)畫(huà)

i fought,but i lost,then i rest

MyZone


先看效果圖(模擬器上interaction-dismiss,因?yàn)闊o(wú)法精準(zhǔn)的控制Pinch力度,導(dǎo)致效果不佳,真機(jī)上運(yùn)行很流暢)

效果圖.gif

你可以從這篇文章中學(xué)到:

  • modal相關(guān)
    • 如何創(chuàng)建一個(gè)自定義的modal轉(zhuǎn)場(chǎng)
    • 如何創(chuàng)建一個(gè)自定義的dismiss轉(zhuǎn)場(chǎng)
    • 如何創(chuàng)建一個(gè)自定義的可交互的dismiss轉(zhuǎn)場(chǎng)
  • push && pop 相關(guān)
    • 如何創(chuàng)建一個(gè)自定義的push轉(zhuǎn)場(chǎng)
    • 如何創(chuàng)建一個(gè)自定義的pop轉(zhuǎn)場(chǎng)
    • 如何創(chuàng)建一個(gè)自定義的可交互的pop轉(zhuǎn)場(chǎng)

如果你想實(shí)現(xiàn)更多的轉(zhuǎn)場(chǎng)效果,可以深入研究下facebook 的 pop開(kāi)源框架,大有裨益


項(xiàng)目目錄結(jié)構(gòu)如下-轉(zhuǎn)場(chǎng)相關(guān):

轉(zhuǎn)場(chǎng)相關(guān)的類(lèi).png

限于篇幅的緣故,這里著重介紹下如何自定義一個(gè)modal的轉(zhuǎn)場(chǎng)

創(chuàng)建一個(gè)自定義的modal轉(zhuǎn)場(chǎng)

實(shí)現(xiàn)自定義的轉(zhuǎn)場(chǎng),一般遵循三個(gè)步驟

1.首先創(chuàng)建一個(gè)專(zhuān)門(mén)負(fù)責(zé)動(dòng)畫(huà)的控制器 animation controller点待,此控制器遵循UIViewControllerAnimatedTransitioning protocol.該控制器負(fù)責(zé)轉(zhuǎn)場(chǎng)動(dòng)畫(huà)的實(shí)現(xiàn).

該例中具體代碼如下:

#import <UIKit/UIKit.h>

@interface BoncePresentAnimationController : NSObject<UIViewControllerAnimatedTransitioning>

@end

實(shí)現(xiàn)協(xié)議中兩個(gè)非常重要的方法


//1.該方法指定動(dòng)畫(huà)時(shí)長(zhǎng)
-(NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext

//2.該方法指定轉(zhuǎn)場(chǎng)動(dòng)畫(huà)的具體實(shí)現(xiàn)
-(void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext

結(jié)合到具體實(shí)例代碼如下

#import "BoncePresentAnimationController.h"

@implementation BoncePresentAnimationController



// This method specifies the length of the transition animation.
-(NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext
{
    
    return  0.5;
    
}

-(void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
{
    
    
    /**1.從當(dāng)前上下文中獲得相應(yīng)的狀態(tài)*/
    
    UIViewController * toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
    
    UIViewController * fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
    
    
    
    CGRect finalFrame = [transitionContext finalFrameForViewController:toViewController];
    
    /**2.獲得容器視圖*/
    UIView * containerView = [transitionContext containerView];
 
    
    /**3.設(shè)置初始狀態(tài)*/
    
    CGRect screenBounds = [UIScreen mainScreen].bounds;
    
    toViewController.view.frame = CGRectOffset(screenBounds, 0, screenBounds.size.height);
    
    
    /**4.添加視圖*/
    
    [containerView addSubview:toViewController.view];
    
    /**5.動(dòng)畫(huà)*/
    NSTimeInterval  duration = [self transitionDuration:transitionContext];
    
    
    [UIView animateWithDuration:duration delay:0.0 usingSpringWithDamping:0.7 initialSpringVelocity:0.0 options:UIViewAnimationOptionCurveLinear animations:^{
       
        fromViewController.view.alpha = 0.5;
        
        toViewController.view.frame = finalFrame;
        
    } completion:^(BOOL finished) {
        
        fromViewController.view.alpha = 1;
        
        // Inform the transition context when the animation completes. The framework then ensures the final state is consistent and removes the from- view from the container.
        [transitionContext completeTransition:YES];
        
    }];
    
}

2.在modal出目標(biāo)控制器之前,指定目標(biāo)控制器的轉(zhuǎn)場(chǎng)代理诱咏,并且遵循UIViewControllerTransitioningDelegate協(xié)議

本例中代碼如下

if ([segue.identifier isEqualToString:@"showAbout"]) {
        
        UIViewController * toViewController = segue.destinationViewController;
        
        [_pinchInteractionController wireToViewController:toViewController];
        
        toViewController.transitioningDelegate = self;
        
    }
   

3.在代理方法中琼讽,返回轉(zhuǎn)場(chǎng)動(dòng)畫(huà)控制器


#pragma mark - UIViewControllerTransitioningDelegate(Modal相關(guān))

-(id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source
{
    
    //1.this method simply returns your custom animation controller instance. If you had multiple view controllers wired up, you could also check the view controller presented to switch between different custom animations.
    return _bouncePresentAnimationController;
    
}

notice

下圖可能更清晰的描述上文所述

流程 2016-06-28 上午12.41.26.png
  • 首先不管你是通過(guò)代碼還是StoryBoard來(lái)創(chuàng)建一個(gè)實(shí)例,并且進(jìn)行push/pop/modal操作允蜈,其運(yùn)行流程一般如下

    • 系統(tǒng)框架會(huì)首先查看這個(gè)目標(biāo)控制器,其是否設(shè)置了轉(zhuǎn)場(chǎng)代理,并遵循相應(yīng)的協(xié)議.如果沒(méi)有,則會(huì)使用默認(rèn)的轉(zhuǎn)場(chǎng)樣式.
  • 如果有,那么系統(tǒng)就會(huì)調(diào)用協(xié)議中的方法巍糯,返回一個(gè)專(zhuān)門(mén)的轉(zhuǎn)場(chǎng)控制器,該控制器負(fù)責(zé)轉(zhuǎn)場(chǎng)時(shí)相關(guān)的動(dòng)畫(huà)以及邏輯.如果未返回,依舊使用默認(rèn)的轉(zhuǎn)場(chǎng)樣式

  • 如果返回了轉(zhuǎn)場(chǎng)控制器,那么就會(huì)執(zhí)行UIViewControllerAnimatedTransitioning協(xié)議中的方法因?yàn)樵摽刂破髯裱@個(gè)協(xié)議(如圖)

綜上所述齿穗,一個(gè)簡(jiǎn)單的自定義modal專(zhuān)場(chǎng)基本實(shí)現(xiàn)

另附上項(xiàng)目地址

notice

1.以上代碼僅供參考,如果有任何你覺(jué)得不對(duì)的地方,都可以聯(lián)系我,我會(huì)第一時(shí)間回復(fù)喊括,謝謝.
qq:391565521 email:zhuhaifei_ios@163.com

持續(xù)完善中,敬請(qǐng)期待.......

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末矢棚,一起剝皮案震驚了整個(gè)濱河市郑什,隨后出現(xiàn)的幾起案子垮斯,更是在濱河造成了極大的恐慌弥奸,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,454評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件畦木,死亡現(xiàn)場(chǎng)離奇詭異兜粘,居然都是意外死亡申窘,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)孔轴,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)剃法,“玉大人,你說(shuō)我怎么就攤上這事路鹰〈蓿” “怎么了收厨?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,921評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)优构。 經(jīng)常有香客問(wèn)我诵叁,道長(zhǎng),這世上最難降的妖魔是什么钦椭? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,648評(píng)論 1 284
  • 正文 為了忘掉前任拧额,我火速辦了婚禮,結(jié)果婚禮上彪腔,老公的妹妹穿的比我還像新娘势腮。我一直安慰自己,他們只是感情好漫仆,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布捎拯。 她就那樣靜靜地躺著,像睡著了一般盲厌。 火紅的嫁衣襯著肌膚如雪署照。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,950評(píng)論 1 291
  • 那天吗浩,我揣著相機(jī)與錄音建芙,去河邊找鬼。 笑死懂扼,一個(gè)胖子當(dāng)著我的面吹牛禁荸,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播阀湿,決...
    沈念sama閱讀 39,090評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼赶熟,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了陷嘴?” 一聲冷哼從身側(cè)響起映砖,我...
    開(kāi)封第一講書(shū)人閱讀 37,817評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎灾挨,沒(méi)想到半個(gè)月后邑退,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,275評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡劳澄,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評(píng)論 2 327
  • 正文 我和宋清朗相戀三年地技,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片秒拔。...
    茶點(diǎn)故事閱讀 38,724評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡莫矗,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情趣苏,我是刑警寧澤狡相,帶...
    沈念sama閱讀 34,409評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站食磕,受9級(jí)特大地震影響尽棕,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜彬伦,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評(píng)論 3 316
  • 文/蒙蒙 一滔悉、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧单绑,春花似錦回官、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,815評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至区转,卻和暖如春苔巨,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背废离。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,043評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工侄泽, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蜻韭。 一個(gè)月前我還...
    沈念sama閱讀 46,503評(píng)論 2 361
  • 正文 我出身青樓悼尾,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親肖方。 傳聞我的和親對(duì)象是個(gè)殘疾皇子闺魏,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評(píng)論 2 350

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