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结构

step1

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

2.Transform类

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

#import <UIKit/UIKit.h>

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

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

- (nullable id <UIViewControllerAnimatedTransitioning>)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 <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;

.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<UIViewControllerAnimatedTransitioning>)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<UIViewControllerContextTransitioning>)transitionContext {
    return 0.33;
}

- (void)animateTransition:(id<UIViewControllerContextTransitioning>)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地址在这儿

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

推荐阅读更多精彩内容