iOS UITabBarViewController自定义转场动画

iOS UITabBarController自定义转场动画

最近找UITabBarController自定义转场动画方面的资料看到了这篇博客,我现在把实践过程中的思路和遇到的问题分享出来。

iOS开发中经常需要自定义转场动画的场景有以下几个

  • UINavigationController的Push和Pop操作
  • UIViewController的Present和Dismiss操作
  • UICollectionViewController点击cell转场动画
  • UITabBarController的切换子控制器的时候

本篇就说说很简单的UITabBarController的自定义转场动画。在此之前大家可以看看唐巧老师的这篇博客。

iOS 7 以协议的方式开放了自定义转场的 API,协议的好处是不再拘泥于具体的某个类,只要是遵守该协议的对象都能参与转场,非常灵活。转场协议由5种协议组成,在实际中只需要我们提供其中的两个或三个便能实现绝大部分的转场动画:

1.转场代理(Transition Delegate)

2.动画控制器(Animation Controller)

3.交互控制器(Interaction Controller)

4.转场环境(Transition Context)

5.转场协调器(Transition Coordinator)

总结下,5个协议只需要我们操心3个;实现一个最低限度可用的转场动画,我们只需要提供上面五个组件里的两个:转场代理和动画控制器即可,还有一个转场环境是必需的,不过这由系统提供;当进一步实现交互转场时,还需要我们提供交互控制器,也有现成的类供我们使用。

完成最基本的、可用的UITabBarController转场只需留意两个协议(UITabBarControllerDelegate,UIViewControllerAnimatedTransitioning)即可。以下是我写这个小demo的思路过程。

1.搭建起最稀疏平常的TabBarVC/NavVC/VC结构

iOS UITabBarViewController自定义转场动画_第1张图片
step1

在开篇提到的那篇博客中,作者把TabBarVC的代理设置为TabBarVC自己。个人觉得这样做不好。协议(代理)/KVO/Block/通知 是OC中类与类通信的四个基本方法,它们都可以解耦代码。我选择新建一个Transform类去做TabBarVC的代理。

2.Transform类

.h文件内遵守协议。preIndex和selectedIndex是为了后面判断TabBarVC的控制器切换方向而设置。后面再讲。

#import 

@interface Transformer : NSObject 
@property (assign, nonatomic) NSInteger preIndex;
@property (assign, nonatomic) NSInteger selectedIndex;
@end

最低完成度的TabBar转场动画,在UITabBarControllerDelegate只需实现下面这个方法。这个方法返回一个动画控制器(任何遵守UIViewControllerAnimatedTransitioning,并实现关键方法的对象)。苹果习惯在协议的代理方法中,把自己作为参数传给其他类。这个做法值得咱们效仿。

- (nullable id )tabBarController:(UITabBarController *)tabBarController
            animationControllerForTransitionFromViewController:(UIViewController *)fromVC
                                              toViewController:(UIViewController *)toVC  NS_AVAILABLE_IOS(7_0);

UIViewControllerAnimatedTransitioning里面必须实现的两个方法,第一个方法告诉系统转场动画的执行时间,并提供了一个转场上下文(任何遵守UIViewControllerContextTransitioning的对象)作为参数,通过这个上下文参数我们能获取很多有用的信息。第二个方法不返回任何值,大家就知道这个方法里就是写动画代码了。

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

.m文件初始化Transform对象

//动画参数
static CGFloat const kPadding  = 10;
static CGFloat const kDamping  = 0.75;
static CGFloat const kVelocity = 2;
- (instancetype)init
{
    self = [super init];
    if (self) {
        _preIndex = 0;
        _selectedIndex = 0;
    }
    return self;
}

.m文件实现UITabBarControllerDelegate的方法

//UITabBarControllerDelegate
- (id)tabBarController:(UITabBarController *)tabBarController animationControllerForTransitionFromViewController:(UIViewController *)fromVC toViewController:(UIViewController *)toVC {
    ByTabBarController *tabVC = (ByTabBarController *)tabBarController;
    return tabVC.transform;
}

注意,后面为了判断TabBarVC的滑动方法,都需要去获取Transform实例对象的preIndex和selectedIndex属性。我最初在这个方法中每次都抛出一个新创建的Transform对象,也就是直接return一个[Transform new],导致每次获取到的preIndex和selectedIndex都是初始值。这里我把Transform实例对象设置为TabBarVC的一个属性,并放在.h中暴露出来。

.m文件实现UIViewControllerAnimatedTransitioning的方法

//UIViewControllerAnimatedTransitioning
- (NSTimeInterval)transitionDuration:(id)transitionContext {
    return 0.33;
}

- (void)animateTransition:(id)transitionContext {
    NSLog(@"Animation begin... ... ");
    //1.
    UIViewController *toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
    UIViewController *fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
    UIView *containerView = [transitionContext containerView];
    
    CGFloat translation = containerView.bounds.size.width + kPadding;
    CGAffineTransform transform = CGAffineTransformMakeTranslation(_preIndex > _selectedIndex ? translation : -translation, 0);
    toViewController.view.transform = CGAffineTransformInvert(transform);
    [containerView addSubview:toViewController.view];
    
    [UIView animateWithDuration:[self transitionDuration:transitionContext] delay:0 usingSpringWithDamping:kDamping initialSpringVelocity:kVelocity options:UIViewAnimationOptionCurveEaseInOut animations:^{
        fromViewController.view.transform = transform;
        toViewController.view.transform = CGAffineTransformIdentity;
    } completion:^(BOOL finished) {
        fromViewController.view.transform = CGAffineTransformIdentity;
        [transitionContext completeTransition:![transitionContext transitionWasCancelled]];
    }];
}

3.判断TabBarVC的滑动方向

a.给UITabBar的每个TabBarItem的tag赋值

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];
    for (NSInteger i = 0; i < self.childViewControllers.count; i++) {
        [self.tabBar.items[i] setTag:i];
    }
}

b.在UITabBar的代理方法中给Transform对象的preIndex和selectedIndex赋值

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item {
    self.transform.selectedIndex = item.tag;
    self.transform.preIndex = self.selectedIndex;
}

因为UITabBar的代理方法先与UITabBarViewController的代理方法调用。所以在tabBar:
didSelectItem:方法中,item的tag值是当前被选中的VC的index,而TabBarVC的selectedIndex属性保留的任然是之前的VC的index。

demo地址在这儿。

你可能感兴趣的:(iOS UITabBarViewController自定义转场动画)