iOS-动画

iOS中实现动画效果的方法有很多,主要分为两类:uikit和core animation。今天先看uikit相关动画:

一、block块动画

最简单最基础的块动画

+animateWithDuration:animations:

若干参数的块

动画时长、延迟动画时间、动画块、完成块
+animateWithDuration:delay:options:animations:completion:
// 1.常规动画属性设置(可以同时选择多个进行设置)
UIViewAnimationOptionLayoutSubviews:动画过程中保证子视图跟随运动。
UIViewAnimationOptionAllowUserInteraction:动画过程中允许用户交互。
UIViewAnimationOptionBeginFromCurrentState:所有视图从当前状态开始运行。
UIViewAnimationOptionRepeat:无限重复运行动画。
UIViewAnimationOptionAutoreverse :动画运行到结束点后仍然以动画方式回到初始点。
UIViewAnimationOptionOverrideInheritedDuration:忽略嵌套动画时间设置。
UIViewAnimationOptionOverrideInheritedCurve:忽略嵌套动画速度设置。
UIViewAnimationOptionAllowAnimatedContent:动画过程中重绘视图(注意仅仅适用于转场动画)。 
UIViewAnimationOptionShowHideTransitionViews:视图切换时直接隐藏旧视图、显示新视图,而不是将旧视图从父视图移除(仅仅适用于转场动画)
UIViewAnimationOptionOverrideInheritedOptions :不继承父动画设置或动画类型。
// 2.动画速度控制(可从其中选择一个设置)
UIViewAnimationOptionCurveEaseInOut:动画先缓慢,然后逐渐加速。
UIViewAnimationOptionCurveEaseIn :动画逐渐变慢。
UIViewAnimationOptionCurveEaseOut:动画逐渐加速。
UIViewAnimationOptionCurveLinear :动画匀速执行,默认值。
// 3.转场类型(仅适用于转场动画设置,可以从中选择一个进行设置,基本动画、关键帧动画不需要设置)
UIViewAnimationOptionTransitionNone:没有转场动画效果。
UIViewAnimationOptionTransitionFlipFromLeft :从左侧翻转效果。
UIViewAnimationOptionTransitionFlipFromRight:从右侧翻转效果。
UIViewAnimationOptionTransitionCurlUp:向后翻页的动画过渡效果。   
UIViewAnimationOptionTransitionCurlDown :向前翻页的动画过渡效果。   
UIViewAnimationOptionTransitionCrossDissolve:旧视图溶解消失显示下一个新视图的效果。   
UIViewAnimationOptionTransitionFlipFromTop :从上方翻转效果。   
UIViewAnimationOptionTransitionFlipFromBottom:从底部翻转效果。

转场动画

切换导航控制器

NextPageViewController* next = [NextPageViewController new];
    UINavigationController* navNew = [[UINavigationController  alloc] initWithRootViewController:next];
    // 获取当前的导航控制器
    UITabBarController* tabCtrl = (UITabBarController*)[[UIApplication sharedApplication] keyWindow].rootViewController;
    // 设置转场动画
    [UIView transitionFromView:tabCtrl.view toView:navNew.view duration:1.0 options:UIViewAnimationOptionTransitionFlipFromRight completion:^(BOOL finished) {
        // 将新的导航控制器设置为 keyWindow 的根控制器
        UIWindow* keyWindow = [[UIApplication sharedApplication] keyWindow];
        keyWindow.rootViewController = navNew;
    }];

两种方法对比

XWBaseNavigationController *baseNVC = [[XWBaseNavigationController alloc] initWithRootViewController:VC];
    CATransition *transtition = [CATransition animation];
    transtition.duration = 0.5;
    transtition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    [UIApplication sharedApplication].keyWindow.rootViewController = baseNVC;
    [[UIApplication sharedApplication].keyWindow.layer addAnimation:transtition forKey:@"animation"];
弹性动画
[UIView animateWithDuration:0.5
                      delay:0
     usingSpringWithDamping:0.3
      initialSpringVelocity:0
                    options:UIViewAnimationOptionCurveLinear
                 animations:^{
    self.blueView.center = self.view.center;
} completion:nil];

参数 dampingRatio 表示阻尼比,取值在(0,1),期值越小振荡的幅度和次数会增加,反之则减少。

参数 velocity 表示视图的初始速度。对于这个值的解释,官方文档的说明与实际效果并不一致,不过速度越大,振幅越大。

在使用弹性动画过程中,建议调整动画时间(影响运行速度)和阻尼比。

帧动画可以叠加

 [UIView animateKeyframesWithDuration:1.0 delay:0 options:UIViewKeyframeAnimationOptionCalculationModeLinear animations:^{
        // 动画的 0 - 0.25 的部分
        [UIView addKeyframeWithRelativeStartTime:0 relativeDuration:0.25 animations:^{
            self.fromView.center = CGPointMake(self.fromView.center.x+200, self.fromView.center.y);
            self.fromView.transform = CGAffineTransformMakeScale(0.6, 1.0);
        }];
        // 动画的 0.25 - 0.5 的部分
        [UIView addKeyframeWithRelativeStartTime:0.25 relativeDuration:0.25 animations:^{
            self.fromView.center = CGPointMake(self.fromView.center.x, self.fromView.center.y-200);
            self.fromView.transform = CGAffineTransformIdentity;
        }];
        // 动画的 0.5 - 0.75 的部分
        [UIView addKeyframeWithRelativeStartTime:0.5 relativeDuration:0.25 animations:^{
            self.fromView.center = CGPointMake(self.fromView.center.x-200, self.fromView.center.y);
            self.fromView.transform = CGAffineTransformMakeRotation(M_PI_2);
        }];
        // 动画的 0.75 - 1 的部分
        [UIView addKeyframeWithRelativeStartTime:0.75 relativeDuration:0.25 animations:^{
            self.fromView.center = CGPointMake(self.fromView.center.x, self.fromView.center.y+200);
            self.fromView.transform = CGAffineTransformIdentity;
        }];
        // 动画的 0 - 1 的部分
        [UIView addKeyframeWithRelativeStartTime:0 relativeDuration:1.0 animations:^{
            self.fromView.backgroundColor = UIColor.redColor;
        }];
    } completion:nil];

你可能感兴趣的:(iOS-动画)