交互式转场动画 - iOS开发

前言

这里面分了两个概念,交互式和转场,交互式转场动画旨在可以通过手势控制转场动画的进行,转场动画可以提供炫酷的视觉效果,让用户能够使用的很舒服;

转场动画

转场主要分为push和present,要实现这两种类型的转场动画当然也要使用不同的方式;
当需要从AController->BController时,在以push是方式进行转场时,在BController中需要遵循UINavigationControllerDelegate

- (nullable id <UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
                                   animationControllerForOperation:(UINavigationControllerOperation)operation
                                                fromViewController:(UIViewController *)fromVC
                                                  toViewController:(UIViewController *)toVC  NS_AVAILABLE_IOS(7_0);

- (nullable id <UIViewControllerInteractiveTransitioning>)navigationController:(UINavigationController *)navigationController
                          interactionControllerForAnimationController:(id <UIViewControllerAnimatedTransitioning>) animationController NS_AVAILABLE_IOS(7_0);

其中第一个函数返回一个遵守UIViewContrllerAnimationTransitioning协议的对象,即实现动画的对象,这个动画对象是所有转场动画的关键;
第二个函数返回一个遵守UIViewControllerInteractiveTransitioning协议的对象,返回一个交互对象,即上述所提到的;
再来看但从AController -> BController是以present的方式进行转场时,则在BController中需要遵循UIViewControllerTransitioningDelegate协议并且实现如下函数:

- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source;

- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed;

- (nullable id <UIViewControllerInteractiveTransitioning>)interactionControllerForPresentation:(id <UIViewControllerAnimatedTransitioning>)animator;

- (nullable id <UIViewControllerInteractiveTransitioning>)interactionControllerForDismissal:(id <UIViewControllerAnimatedTransitioning>)animator;

其中前两个函数也是返回一个遵循UIViewContrllerAnimationTransitioning的对象,和上述描述差不多,但不一样的是,present方式的转场为present和pop都提供了函数,后两个函数同样是返回交互对象;

动画实现

接下来就最重要的动画实现部分了,上述说过需要在代理函数中返回动画对象,就是现在所说的我们要实现的动画对象,首先创建一个遵循UIViewContrllerAnimationTransitioning协议的对象,然后实现该协议重要的两个函数如下:

- (NSTimeInterval)transitionDuration:(nullable id <UIViewControllerContextTransitioning>)transitionContext;
// This method can only  be a nop if the transition is interactive and not a percentDriven interactive transition.
- (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext;

其中第一个函数返回动画执行的时间,第二个函数则是做相应的动画,接下来主要讲解第二个函数,让大家来理解动画主要的实现方式:
首先我们可以看到这个函数传进来一个遵循UIViewControllerContextTransitioning协议的函数,这个对象当中包含了做动画的context,里面包含有重要的信息,其中有做动画的两个controller的信息,即fromViewController和toViewController,还有做动画的父视图,这个视图是做动画时最关键的视图,即在它上面做相应的转场动画,这些主要信息都可以从transitionContext对象中拿到。

接下来就以代码来讲述动画的产生:
图片1.png
- (void)doPushAnimation:(id<UIViewControllerContextTransitioning>)transitionContext
{
    //根据key拿到两个参与转场的VC;
    ViewController *fromVC = (ViewController *)[transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
    LCYPushToViewController *toVC = (LCYPushToViewController *)[transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
    //拿到主要用于做动画的containerView;
    UIView *containerView = [transitionContext containerView];
    
    LCYCustomCollectionViewCell *cell = (LCYCustomCollectionViewCell *)[fromVC.collectionView cellForItemAtIndexPath:fromVC.currentIndexPath];
    //截图用于做过渡
    UIView *tempView = [cell.imageView snapshotViewAfterScreenUpdates:NO];
    tempView.frame = [cell.imageView convertRect:cell.imageView.bounds toView:containerView];
    //动画前各个视图的状态
    cell.imageView.hidden = YES;
    toVC.view.alpha = 0;
    toVC.imageView.hidden = YES;
    //将两个view添加到containerview上
    [containerView addSubview:toVC.view];
    [containerView addSubview:tempView];
    //开始动画
    [UIView animateWithDuration:[self transitionDuration:transitionContext] animations:^{
        tempView.frame = [toVC.imageView convertRect:toVC.imageView.bounds toView:containerView];
        toVC.view.alpha = 1;
    } completion:^(BOOL finished) {
        tempView.hidden = YES;
        toVC.imageView.hidden = NO;
        //注意,动画完成之后一定要加上这句,因为完成转场后需要push或者pop掉参与转场的controller,以此来作为标准;
        [transitionContext completeTransition:YES];
    }];
}

然后再看第二个函数,返回一个交互对象,交互对象可以是任意手势的交互,这个看你们自己的需要,交互的主要核心是同步手势和动画;
这里需要先创建一个继承自UIPercentDrivenInteractivetransition的类,在该类中实现对应的手势控制动画的操作,在该类中主要有四个函数在起作用:

- (void)updateInteractiveTransition:(CGFloat)percentComplete;
- (void)cancelInteractiveTransition;
- (void)finishInteractiveTransition;

1:主要更新动画执行的时间点,用于同步动画的执行过程;
2:表示动画执行完成;
3:表示动画被取消执行;
还有一个函数是iOS10之后出来的- (void)pauseInteractiveTransition NS_AVAILABLE_IOS(10_0);
下面的代码来阐述这三个函数应当如何使用;

- (void)handleGesture:(UIPanGestureRecognizer *)panGesture
{
    CGFloat transitionX = [panGesture translationInView:panGesture.view].x;
    CGFloat persent = transitionX / panGesture.view.frame.size.width;
    
    switch (panGesture.state) {
        case UIGestureRecognizerStateBegan:
            _isInteration = YES;
            [self start];
            break;
        case UIGestureRecognizerStateChanged:
            [self updateInteractiveTransition:persent];
            break;
        case UIGestureRecognizerStateEnded:
            _isInteration = NO;
            if (persent > 0.5) {
                [self finishInteractiveTransition];
            }else{
                [self cancelInteractiveTransition];
            }
            break;
        default:
            break;
    }
}

当使用交互式动画时,由于动画的执行会被手势所掌控,所以需要判断动画是否被取消了,然后再作出相应的操作,下面这段代码阐述了应该如何做判断;

[UIView animateWithDuration:[self transitionDuration:transitionContext] animations:^{
        tempView.frame = [cell.imageView convertRect:cell.imageView.bounds toView:containerView];
        fromVC.view.alpha = 0;
    } completion:^(BOOL finished) {
        //由于加入了手势所以必须判断手势是取消了还是完成了;
        [transitionContext completeTransition:![transitionContext transitionWasCancelled]];
        if ([transitionContext transitionWasCancelled]) {
            tempView.hidden = YES;
            fromVC.imageView.hidden = NO;
            //fromVC.view.alpha = 1.0;
        }else{
            cell.imageView.hidden = NO;
            [tempView removeFromSuperview];
            //注意,动画完成之后一定要加上这句,因为完成转场后需要push或者pop掉参与转场的controller,以此来作为标准;
            [transitionContext completeTransition:YES];
        }
    }];

这里我只用了push的方式展示了转场动画的实现,present方式与其类似,所以这里不再赘述~~最后,附上笔者所写的一个交互式转场动画的demo,请戳这里
希望本文对大家有所帮助!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容