自定义画面切换的效果

作者: keithmorning | 来源:发表于2015-10-17 13:55 被阅读203次

    追求极致的产品的体验是我们作为开发者的重要目标。IOS7以后苹果更改了不同view之间的切换的方式。如果你是移动设备请点击获得更好的阅读效果。

    1. Old in IOS5,IOS6

    之前IOS5和IOS6中的一般是采用ChildrenViewController的方式完成过渡和切换效果,类似的代码如下:

    [self addChildViewController:toVC];
    [fromVC willMoveToParentViewController:nil];
    [self.view addSubview:toVc.View];
    
    __weak id weakself = self;
    [self transitionFromViewController:fromVC 
                      toViewController:toVC duration:0.3 
                               options:UIViewAnimationOptionTransitionCrossDissolve 
                            animations:^{} 
                            completion:^(BOOL finished) { 
        [fromVC removeFromSuperView]; 
        [fromVC removeFromParentViewController]; 
        [toVC didMoveToParentViewController:weakSelf]; 
    }];
    
    2. New in IOS7

    为了解决代码高度耦合的问题,IOS7提供了一套自定义的VC切换。

    先看一下相关的API,可以查看UIViewControllerTransitioning.h

    @protocol UIViewControllerContextTransitioning <NSObject>

    这个接口提供了VC之间切换的上下文,包括两个vc切换时候的舞台containerView,取出fromVC和ToVc,结束转换和取消转换等。这个一般不需要我们来实现,在下面的UIViewControllerAnimatedTransitioning中可以取到。

    @protocol UIViewControllerAnimatedTransitioning <NSObject>

    这个接口是实现转换的主要场地。在它的方法中- (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext;来实现我们的动画部分。这个是我们需要实现的主要部分。它的另一个是函数用来指定动画的时间。

    @protocol UIViewControllerTransitioningDelegate <NSObject>

    这个是用来返回你的在呈现VC和解散VC时候的UIViewControllerAnimatedTransitioning,我们可以做写一个TransitionManger用来管理动画的效果,用工厂的方法来返回需要的动画效果。把视图控制的TransitioningDelegate实现交给他。

    3.Demo

    前一段时间,需要做一个类似AlertViewController的东东,但是需要能支持在view中插入subview。于是就用这个实现了一番,其实很简单,先看一下效果:

    Simulator Screen Shot Oct 17, 2015, 12.29.14 PM.png

    使用TransitioningDelegate的核心就是在container中写出fromVc和ToVc的转换过程。Alertview是ToVC而AlertView后面的半通明黑色就是Container的地盘,container的下面是fromVc。明白这些后,我们来开始写实现过程

    ==写一个实现UIViewControllerAnimatedTransitioning的Animation类

    @implementation SMAlertModelAnnimation{
        UIView *_coverView;
        NSArray *_constraints;
    }
    
    - (NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext{
        return 1.0f;
    }
    
    - (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext{
        UIView *containerView  =[transitionContext containerView];
        
        //The modal view itself
        UIView *modalView = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey].view;
        
        //View to darken the area behind the modal view
        if (!_coverView) {
            _coverView = [[UIView alloc] initWithFrame:containerView.frame];
            _coverView.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.6];
            _coverView.alpha = 0.0;
        } else _coverView.frame = containerView.frame;
        [containerView addSubview:_coverView];
        
        [containerView addSubview:modalView];
        
        //Move off of the screen so we can slide it up
        CGRect endFrame = modalView.frame;
        modalView.frame = CGRectMake(endFrame.origin.x, containerView.frame.size.height, endFrame.size.width, endFrame.size.height);
        [containerView bringSubviewToFront:modalView];
        
        //Animate using spring animation
        [UIView animateWithDuration:[self transitionDuration:transitionContext] delay:0.0 usingSpringWithDamping:0.8 initialSpringVelocity:1.0 options:0 animations:^{
            modalView.frame = endFrame;
            _coverView.alpha = 0.6f;
        } completion:^(BOOL finished) {
            [transitionContext completeTransition:YES];
        }];
    
    }
    

    这里取消了添加约束的代码,为的是让你更加明白这段代码的核心地方。 第一个方法返回了动画的时间,第二个方法分成了大概的三个部分

    • 添加一个converView作为黑色模态的背景
    • 通过UITransitionContextToViewControllerKey取出目标ToVc的view把它添加到Container的view中,并制定view的初始位置
    • 添加自定义的动画效果

    需要注意的是[transitionContext completeTransition:YES];这样方法是必须要加的来保证告诉控制器转换完成。

    ==调用
    新建一个TransitionManager用来实现UIViewControllerTransitionDelegate
    我们可以在其中封装一个Enumeration类型叫做TransitionStyle
    然后在- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source方法中根据type返回我们的animation类型

    先建一个ToVC的视图控制器,在init或者initWithCoder中更改他的呈现方式

        self.modalPresentationStyle = UIModalPresentationCustom;
        transitionManager = [SMTransitionManager new];
        transitionManager.presentStyle = SMTransitionStyleAlertModel;
        self.transitioningDelegate = transitionManager;
    

    这样我们就很快的实现了这个VC的转换效果,SMTransitionManager可以重用到任何的VC中。在我的代码中建了一个AlertBaseViewController,配好storyboard之后,之间让storyboard的类继承AlertBaseViewController,不需要在多写一行Code就能实现这种model效果。

    明白了他们的工作原理,你就可以写出各式各样的动画效果了,跟我们写一个View的动画效果将没有什么不同。剩下的就是好好研究一下CoreAnimation了吧。

    Demo地址

    相关文章

      网友评论

        本文标题:自定义画面切换的效果

        本文链接:https://www.haomeiwen.com/subject/bzdacttx.html