仿iOS 9系统日历动画

先看看系统日历的Transition效果

系统日历效果

这里面包含了好几个动画

  1. 在push的时候,前面一个Controller从中间截断;后面的Conntroller则从中间位置上升。
  2. 在pop的时候,以相反的动画显示
  3. navigationBar包含了一个淡入淡出的效果

得益于iOS 7新增UIViewControllerAnimatedTransitioning,用现有的Core Animation就可用轻松实现。值得一提的是,《iOS 7 by Tutorials》对这方面点讲解非常透彻;还有VCTransitionsLibrary这个库,实现了很多特效,我很多代码就是参考他里面的实现。更深层次,WWDC 2013 #218——Custom Transitions Using View Controllers,然而对初学者并不适用。

我的效果

要实现一个自定义的Transition,概括起来有3个步骤:

  1. 创建一个animation controller。这个controller只是一个普通NSObject对象,但要实现UIViewControllerAnimatedTransitioning协议,这个协议有一个重要的方法- (void)animateTransition:(id<UIViewControllerContextTransitioning> _Nonnull)transitionContext,参数transitionContext对象包含了所有动画需要的UIView
  2. 设置self.navigationController.delegate。它的作用就是,在push、pop、present Controller时,返回上面的animation controller,替换系统默认的效果
  3. 最后,在animation controller实现动画。

animation controller是transition的核心。可以理解它是一个临时controller,在这个里面有一个containerView,以及前、后controller的view。把前、后的view放在containerView里做动画,这就是Transition。

下面从0开始,一步一步完成这个自定义Transition。

首先建一个Single View的工程calenderAnimator。我不太习惯用storyboard,一般我会删掉它,然后在AppDelegate.m加上下面代码

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    ViewController *mainViewController = [[ViewController alloc] init];
    
    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:mainViewController];
    
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    [self.window setRootViewController:navigationController];
    [self.window setBackgroundColor:[UIColor whiteColor]];
    [self.window makeKeyAndVisible];
    
    return YES;
}

增加一个UINavigationController,方便实现push和pop动作。然后在ViewConrtoller.m里添加代码

- (void)viewDidLoad {
    [super viewDidLoad];
    CGFloat r = RND_COLOR;
    CGFloat g = RND_COLOR;
    CGFloat b = RND_COLOR;
    self.view.backgroundColor = [UIColor colorWithRed:r green:g blue:b alpha:1];
    
    self.title = [NSString stringWithFormat:@"#%0X%0X%0X", (int)(r*255), (int)(g*255), (int)(b*255)];
    
    UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"CatInBin"]];
    imageView.center = self.view.center;
    [self.view addSubview:imageView];
    
}

- (void)viewDidAppear:(BOOL)animated
{
    NSUInteger count = self.navigationController.viewControllers.count;
    if (count > 1) {
        self.navigationController.navigationBar.tintColor = self.navigationController.viewControllers[count - 2].view.backgroundColor;
    }
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    [self.navigationController pushViewController:[ViewController new] animated:YES];
}

给ViewController加上随机背景色和一张图片。任意点击一次就push一个新的ViewController。设置navigationController的tintColor,方便观察上一个ViewController的背景色。
到目前为止,这些代码都是我们熟悉的操作。Transition效果也是默认的左右滑入,下面就来实现这3个步骤。

步骤1:创建CalenderAnimationController

@interface CalenderAnimationController : NSObject <UIViewControllerAnimatedTransitioning>

@property (nonatomic, assign) BOOL reverse;

@end
@implementation CalenderAnimationController

- (NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext
{
    return 1.0;
}

- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
{
    UIViewController *fromVC = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
    UIViewController *toVC = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
    UIView *toView = toVC.view;
    UIView *fromView = fromVC.view;
    
    if(self.reverse){
        [self executeReverseAnimation:transitionContext fromVC:fromVC toVC:toVC fromView:fromView toView:toView];
    } else {
        [self executeForwardsAnimation:transitionContext fromVC:fromVC toVC:toVC fromView:fromView toView:toView];
    }
}
@end

reverse属性用于区分push还是pop,对应不同的动画实现。CalenderAnimationController实现了两个方法。transitionDuration:返回的时动画时长;animateTransition:是动画的回调方法,这里我们通过2个key已经拿到了fromView和toView。

步骤2:设置delegate

在ViewController加上代码

@interface ViewController () <UIViewControllerTransitioningDelegate, UINavigationControllerDelegate>

@property CalenderAnimationController *animationController;

@end

@implementation ViewController

- (void)viewDidLoad {
    //保持原样
    self.animationController = [[CalenderAnimationController alloc] init];
}

- (void)viewDidAppear:(BOOL)animated
{
    self.navigationController.delegate = self;
    //保持原样
}
- (id<UIViewControllerAnimatedTransitioning>) navigationController:(UINavigationController *)navigationController
                                   animationControllerForOperation:(UINavigationControllerOperation)operation
                                                fromViewController:(UIViewController *)fromVC
                                                  toViewController:(UIViewController *)toVC
{
    self.animationController.reverse = (operation == UINavigationControllerOperationPop);
    return self.animationController;
}
@end

viewDidAppear:设置navigationController.delegate = self。不能在viewDidLoad设置,因为所有的ViewController共享一个navigationController,当pop出去的controller被回收时,navigationController.delegate就会被置为nil,也就没有了动画。
ViewController新加了一个方法

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

这个方法返回前面创建出来的animationController,并通过operation得到当前的操作类型。步骤2的主要目的,就是让系统回调这个方法。

步骤3:实现动画

前面的所有工作只是铺垫,为的是让系统使用我们自己实现的动画,而非默认动画。我们要的动画有3个:1、前面的View分为两半对开移动;2、后面的View从中间开始向上移动;3、导航条的Fade效果。
动画3其实不需要写任何代码,当我们接管了系统的transition,导航条就自动有这个效果。动画2用简单的隐式动画就能完成。动画1没有对应的隐式动画,麻烦一点。如果把前面的View拆分为2个单独的View,各自完成一个移动的动画就简单很多了。而拆分的过程,用UIView的snapshot来截屏即可。

- (void)executeForwardsAnimation:(id<UIViewControllerContextTransitioning>)transitionContext fromVC:(UIViewController *)fromVC toVC:(UIViewController *)toVC fromView:(UIView *)fromView toView:(UIView *)toView
{
    UIView *containerView = [transitionContext containerView];
    
    [containerView addSubview:fromView];
    fromView.frame = CGRectOffset(toView.frame, toView.frame.size.width, 0);
    [containerView addSubview:toView];
    
    CGRect upRegion = CGRectMake(0, 0, fromView.frame.size.width, fromView.frame.size.height/2);
    UIView *upView = [fromView resizableSnapshotViewFromRect:upRegion afterScreenUpdates:NO withCapInsets:UIEdgeInsetsZero];
    upView.frame = upRegion;
    [containerView addSubview:upView];
    
    CGRect downRegion = CGRectMake(0, fromView.frame.size.height/2, fromView.frame.size.width, fromView.frame.size.height/2);
    UIView *downView = [fromView resizableSnapshotViewFromRect:downRegion afterScreenUpdates:NO withCapInsets:UIEdgeInsetsZero];
    downView.frame = downRegion;
    [containerView addSubview:downView];
    
    toView.frame = CGRectOffset(toView.frame, 0, toView.frame.size.height/2);

    NSTimeInterval duration = [self transitionDuration:transitionContext];
    
    [UIView animateWithDuration:duration
                          delay:0.0
                        options:UIViewAnimationOptionCurveEaseOut
                     animations:^{
                         upView.frame = CGRectOffset(upView.frame, 0, -upView.frame.size.height);
                         downView.frame = CGRectOffset(downView.frame, 0, downView.frame.size.height);

                         toView.frame = CGRectOffset(toView.frame, 0, -toView.frame.size.height/2);
                     }
                     completion:^(BOOL finished) {
                         [upView removeFromSuperview];
                         [downView removeFromSuperview];
                         fromView.frame = containerView.frame;
                         [transitionContext completeTransition:![transitionContext transitionWasCancelled]];
                     }];
}

第一步,先获得containerView,再把fromView和toView添加进来。这一步是需要手动完成的,containerView默认是没有subview。fromView我们先隐藏起来,等动画完成了再显示。

接下来创建upView和downView,利用iOS 7新加的- (UIView *)resizableSnapshotViewFromRect:(CGRect)rect afterScreenUpdates:(BOOL)afterUpdates withCapInsets:(UIEdgeInsets)capInsets,它可以截取UIView任意的一部分,拷贝到另一个UIView。
真正的动画部分就只有upView、downView和toView的frame操作,3行代码。等动画完成后,upView和downView就没有存在的意义,从contrainerView移除。再调用[transitionContext completeTransition:![transitionContext transitionWasCancelled]],通知系统transition全部完成。至此,animation controller就完成了它的使命。
- (void)executeReverseAnimation:(id<UIViewControllerContextTransitioning>)transitionContext fromVC:(UIViewController *)fromVC toVC:(UIViewController *)toVC fromView:(UIView *)fromView toView:(UIView *)toView只是上一个动画的反转,在此就不贴代码了。

完整代码

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

推荐阅读更多精彩内容