iOS 仿小紅書的 push pop轉(zhuǎn)場動畫

iOS 7之后芹壕,蘋果提供了自定義轉(zhuǎn)場動畫的API窟绷,我們可以自己去定義任意動畫效果锯玛。本篇為筆者學(xué)習(xí)push、pop自定義轉(zhuǎn)場效果的筆記钾麸,如何有任何不正確或者有指導(dǎo)意見的更振,請?jiān)谠u論中留下您的寶貴意見!7钩ⅰ肯腕!

本篇只講其中的UIViewControllerAnimatedTransitioning協(xié)議,來實(shí)現(xiàn)push钥平、pop動畫效果实撒。另外的幾個(gè),后面會繼續(xù)學(xué)習(xí)總結(jié)!!!

我們要實(shí)現(xiàn)push涉瘾、pop自定義轉(zhuǎn)場效果知态,我們必須要有一個(gè)遵守了UIViewControllerAnimatedTransitioning協(xié)議且實(shí)現(xiàn)其必須實(shí)現(xiàn)的代理方法的類。

下面我們先了解下協(xié)議:
@protocol UIViewControllerAnimatedTransitioning <NSObject>

// This is used for percent driven interactive transitions, as well as for container controllers that have companion animations that might need to
// synchronize with the main animation.
//
// 指定轉(zhuǎn)場動畫時(shí)長立叛,必須實(shí)現(xiàn)负敏,否則會Crash。
// 這個(gè)方法是為百分比驅(qū)動的交互轉(zhuǎn)場和有對比動畫效果的容器類控制器而定制的秘蛇。

  • (NSTimeInterval)transitionDuration:(nullable id <UIViewControllerContextTransitioning>)transitionContext;

// This method can only be a nop if the transition is interactive and not a percentDriven interactive transition.
// 若非百分比驅(qū)動的交互過渡效果其做,這個(gè)方法只能為空

  • (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext;

@optional

// This is a convenience and if implemented will be invoked by the system when the transition context's completeTransition: method is invoked.

  • (void)animationEnded:(BOOL) transitionCompleted;

@end
下面是具體的實(shí)現(xiàn),
---------自定義push動畫-----------
//轉(zhuǎn)場過渡的容器view
UIView *containerView = [transitionContext containerView];

//FromVC
UIViewController *fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
UIView *fromView = fromViewController.view;
[containerView addSubview:fromView];

//ToVC
UIViewController *toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
UIView *toView = toViewController.view;
[containerView addSubview:toView];
toView.alpha = 0;

//過渡的圖片
UIImageView *transitionImgView = [[UIImageView alloc] initWithImage:self.transitionImgView.image];
transitionImgView.frame = self.transitionBeforeImgFrame;

[transitionContext.containerView addSubview:transitionImgView];

[UIView animateWithDuration:[self transitionDuration:transitionContext] animations:^{
    transitionImgView.frame = self.transitionAfterImgFrame;
    toView.alpha = 1;
} completion:^(BOOL finished) {
    [transitionImgView removeFromSuperview];
    BOOL wasCancelled = [transitionContext transitionWasCancelled];
    //設(shè)置transitionContext通知系統(tǒng)動畫執(zhí)行完畢
    [transitionContext completeTransition:!wasCancelled];
}];

------------自定義pop動畫----------
//轉(zhuǎn)場過渡的容器view
UIView *containerView = [transitionContext containerView];

//ToVC
UIViewController *toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
UIView *toView = toViewController.view;
[containerView addSubview:toView];

//圖片背景的空白view (設(shè)置和控制器的背景顏色一樣赁还,給人一種圖片被調(diào)走的假象)
UIView *imgBgWhiteView = [[UIView alloc] initWithFrame:self.transitionBeforeImgFrame];
imgBgWhiteView.backgroundColor = [UIColor clearColor];
[containerView addSubview:imgBgWhiteView];

//有漸變的白色背景
UIView *bgView = [[UIView alloc] initWithFrame:containerView.bounds];
bgView.backgroundColor = [UIColor whiteColor];
bgView.alpha = 1;
[containerView addSubview:bgView];

//過渡的圖片
UIImageView *transitionImgView = [[UIImageView alloc] initWithImage:self.transitionImgView.image];
transitionImgView.frame = self.transitionAfterImgFrame;
transitionImgView.layer.cornerRadius = 20;
transitionImgView.alpha = 0.3;
transitionImgView.layer.masksToBounds = YES;
[transitionContext.containerView addSubview:transitionImgView];

[UIView animateWithDuration:[self transitionDuration:transitionContext] animations:^{
    transitionImgView.frame = self.transitionBeforeImgFrame;
    bgView.alpha = 0;
} completion:^(BOOL finished) {
    BOOL wasCancelled = [transitionContext transitionWasCancelled];
    [imgBgWhiteView removeFromSuperview];
    [bgView removeFromSuperview];
    [transitionImgView removeFromSuperview];
    
    //設(shè)置transitionContext通知系統(tǒng)動畫執(zhí)行完畢
    [transitionContext completeTransition:!wasCancelled];
}];

分析Push動畫

我們暫不細(xì)說UIViewControllerContextTransitioning協(xié)議妖泄,我們這里只使用到了-containerView這個(gè)代理方法,我們可以通過蘋果提供的鍵來獲取對應(yīng)的控制器:
ViewController *fromVC = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
獲取到了fromVC艘策,也就是當(dāng)前要從哪個(gè)控制器切換蹈胡。
然后通過:
DetailController *toVC = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
獲取到了toVC,也就是切換到哪一個(gè)控制器。
然后再通過
UIView *containerView = [transitionContext containerView];
獲取containerView視圖罚渐。這個(gè)是一個(gè)代理方法却汉,可以獲取到視圖容器。

下面我們獲取fromVC所點(diǎn)擊的圖片控件荷并,然后通過-snapshotViewAfterScreenUpdates:將所點(diǎn)擊的圖片控件截圖并用于切換使用病涨,參數(shù)設(shè)置為NO,否則動畫會很生硬璧坟。最后,我們還要將這個(gè)所點(diǎn)擊的圖片控件的坐標(biāo)轉(zhuǎn)換成容器視圖的坐標(biāo).
UIView *toImageView = toVC.imgView;
fromImageView.hidden = YES;
toVC.view.alpha = 0.0;
toImageView.hidden = YES;

下面這兩行是非常關(guān)鍵的赎懦,并且必須保證tempView在最上層雀鹃,否則動畫效果就沒有了。先將目標(biāo)控制器的視圖添加到容器中励两,再添加源圖片的截圖到容器中黎茎,用于顯示切換效果。
[containerView addSubview:toVC.view];
[containerView addSubview:tempView];
我們在動畫中当悔,將初始的截圖的frame改變成最終的效果的frame即可達(dá)到我們的目標(biāo)效果傅瞻。另外要注意還需要將坐標(biāo)轉(zhuǎn)換成容器的坐標(biāo):
tempView.frame = [toImageView convertRect:toImageView.bounds toView:containerView];
當(dāng)動畫完成以后,一定要調(diào)用:[transitionContext completeTransition:YES]盲憎,設(shè)置切換動畫已經(jīng)完成嗅骄,否則想要pop回去就不能了。
pop和push差不多饼疙,這里就不贅述了溺森。
如需demo,請留言窑眯。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末屏积,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子磅甩,更是在濱河造成了極大的恐慌炊林,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件卷要,死亡現(xiàn)場離奇詭異渣聚,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)却妨,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進(jìn)店門饵逐,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人彪标,你說我怎么就攤上這事倍权。” “怎么了?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵薄声,是天一觀的道長当船。 經(jīng)常有香客問我,道長默辨,這世上最難降的妖魔是什么德频? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮缩幸,結(jié)果婚禮上壹置,老公的妹妹穿的比我還像新娘。我一直安慰自己表谊,他們只是感情好钞护,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著爆办,像睡著了一般难咕。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上距辆,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天余佃,我揣著相機(jī)與錄音,去河邊找鬼跨算。 笑死爆土,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的诸蚕。 我是一名探鬼主播雾消,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼挫望!你這毒婦竟也來了立润?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤媳板,失蹤者是張志新(化名)和其女友劉穎桑腮,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蛉幸,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡破讨,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了奕纫。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片提陶。...
    茶點(diǎn)故事閱讀 38,161評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖匹层,靈堂內(nèi)的尸體忽然破棺而出隙笆,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布撑柔,位于F島的核電站瘸爽,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏铅忿。R本人自食惡果不足惜剪决,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望檀训。 院中可真熱鬧柑潦,春花似錦、人聲如沸峻凫。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蔚晨。三九已至,卻和暖如春肛循,著一層夾襖步出監(jiān)牢的瞬間铭腕,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工多糠, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留累舷,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓夹孔,卻偏偏與公主長得像被盈,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子搭伤,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評論 2 344

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