CYCustomedNavigation自定义转场动画和ViewController独立管理的导航栏

[图片上传失败...(image-49c1b6-1524194351475)]

项目地址

What is CYNavigationController ?

[图片上传失败...(image-e11a42-1524194351475)] 
[图片上传失败...(image-fe18dd-1524194351475)] 
[图片上传失败...(image-67518c-1524194351475)] 
[图片上传失败...(image-8e4f96-1524194351475)] 
[图片上传失败...(image-e09d8f-1524194351475)] 
[图片上传失败...(image-fa7062-1524194351475)] 

应用场景

  • 场景1

  采用组件化路由协议架构APP,有时可能需要根据URI跳转到任意界面,考虑到当前显示的父级Controller的不确定性,这种业务场景是复杂的,如果当前展示的ViewController不是基于Controller管理的,就只能使用Present方式弹出新页面,而默认的Present动画在一般场景下又显得比较突兀;而且有时,在新的页面不在某个NavigationController管理下,此时我们仍然需要它具有一个导航栏,所以如果我们需要根据各种情况,去用不同的方法来实现相同效果的,容易造成混乱。

  CYNavigationController正好提供了这样一套解决方案,在项目中我们可以不嵌套一层导航控制器,而是通过CYAnimatedTransition自定义Present动画模拟Push,用CYCustomedNavigationBar单独为每个页面实现一个导航栏,这样就可以采用统一的方式对包括协议跳转的页面在内的这些页面进行管理,做到同UINavigationController一样的显示效果。

  • 场景2

  CYAnimatedTransition可以单独集成使用,的自定义拓展性比较强,可以根据需求进行Push和Present动画的自定义,拓展的详细方法下文会有介绍,SDK默认包含一个“神奇效果”动画,一个“push”动画可以直接使用和作为自定义动画的示例参考,动画对象一经创建,在Present和push场景下通用。

  • 场景3

  CYCustomedNavigationBar也可以单独集成使用,在UINavigationController涉猎不到的某个页面仍然需要一个导航栏,不一定非要为这个页面再单独嵌套一层导航控制器,也不必担心通过自定义View来制作导航栏添加按钮和设置样式的繁琐,CYCustomedNavigationBar可以让你在没有导航控制器支持的ViewController中像使用系统导航控制器一样拥有一个导航栏,并且是自己独立管理的。

CYNavigationControllerSDK包含两部分:

  • CYCustomedNavigationBar

CYCustomNavigationBar可以让你在不适用UINavigationController时在ViewController中仍然拥有一个独立管理的、可以像适用navigationController时一样设置各种item的NavigationBar,默认适配iPhoneX。

  • CYAnimatedTransition

CYAnimatedTransition是一个可拓展的转场动画库,动画对象同时适用于Push和Present两种新页面显示模式,支持默认手势返回和自定义手势返回。随SDK附赠一对“神奇效果”的动画,一对模仿系统Push的动画。

二者可以结合使用也可以根据需要单独集成某一项。


Example

<div align=center><img width="270" height="480" src="https://img-blog.csdn.net/20180417103328832?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3UwMTQ2MDQxMDY=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70"/></div>

Installation

  • 推荐使用CocoaPods安装:pod 'CYCustomedNavigation'
  • 考虑到可能的动画代码扩充,集成时请直接Download zip文件,将CYCustomedNavigationSDK目录直接拖进自己的工程目录即可。

Usage

CYCustomedNavigationBar

使用CYCustomedNavigationBar时,直接在ViewController中:

#import "aViewController.h"
#import "CYCustomedNavigationBar.h"

@interface aViewController ()

- (void)viewDidLoad {
    [super viewDidLoad];
 
    //当此页面需要一个导航栏时,需要手动创建
    self.cy_navigationBar = [[CYCustomedNavigationBar alloc] init];
    
    //设置导航栏title
    self.cy_navigationBar.navigationItem.title = @"present模仿push动画";
 
    //设置导航栏背景颜色
    self.cy_navigationBar.barTintColor = [UIColor orangeColor];
    
    //leftItem
    self.cy_navigationBar.navigationItem.leftBarButtonItem = [UIBarButtonItem backItemWithTarget:self action:@selector(backItemClicked)];
    
}

@end

其中各种Item的颜色、字体等的主题设置已然生效,但是导航栏的背景必须由cy_navigationBar.barTintColor来设置。

//title
UINavigationBar *appearance = [UINavigationBar appearance];
NSMutableDictionary *textAttrs = [NSMutableDictionary dictionary];
textAttrs[NSForegroundColorAttributeName] = [UIColor whiteColor];
textAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:18 weight:2];
[appearance setTitleTextAttributes:textAttrs];
   
//item
UIBarButtonItem *appearance = [UIBarButtonItem appearance];
[appearance setTintColor:[UIColor whiteColor]];
NSMutableDictionary *textAttrs = [NSMutableDictionary dictionary];
textAttrs[NSForegroundColorAttributeName] = [UIColor whiteColor];
textAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:16];
[appearance setTitleTextAttributes:textAttrs forState:UIControlStateNormal];

CYAnimatedTransition

CYAnimatedTransition在使用时也可做到无侵入,每个动画包含Forward正向动画和Inverse反向动画两部分,做动画库拓展时我们需要注意,下文会有所介绍,使用时我们的代码中只需涉猎到正向动画即可

导入主头文件

#import "CYAnimatedTransition.h"
 
  • Present

为ViewController创建一个转场动画对象,并设置给ViewController

//自定义present
CYMagicMoveTransition *animatedTransition = [[CYMagicMoveTransition alloc] init];
animatedTransition.sourceViewDataSource = self;
animatedTransition.destinationViewDataSource = detailVC;
animatedTransition.delegate = detailVC;
[detailVC setCY_presentAnimatedTransition:animatedTransition];

然后像平时一样调用present

[self presentViewController:detailVC animated:YES completion:nil];
  • Push

创建一个同样的转场动画对象,并设置给ViewController

//自定义push
CYMagicMoveTransition *animatedTransition = [[CYMagicMoveTransition alloc] init];
animatedTransition.sourceViewDataSource = self;
animatedTransition.destinationViewDataSource = detailVC;
animatedTransition.delegate = detailVC;
[detailVC setCY_pushAnimatedTransition:animatedTransition forSourceViewController:self];

然后像平时一样调用push

[self.navigationController pushViewController:detailVC animated:YES];

此外,SDK中还提供了一个方法,自动帮你找到当前显示的页面并将新页面从当前显示页面以Push动画效果Present出来,此方法可直接应用于组件化中模拟push。

[detailVC cy_presentFromTopViewControllerWithAnimated:YES];
  • 关于sourceViewDataSource和destinationViewDataSource

类似于“神奇效果”动画一样,有的动画需要在动画过程中将前一个SourceViewController中的一个View移动到DestiationViewController中的另一个位置,为了做到无侵入,所以这里通过DataSource将这些View传递给动画。

  • 关于sourceViewDataSource和destinationViewDataSource

有时,除了SourceViewDataSource提供的View之外,我们可能需要在DestinationViewController中在动画开始时做一些其他的UI控件的动画,或者在动画开始时或者结束时做一些其他的事情,此时可以用到以下两个delegate方法

@protocol CYAnimatedTransitionDelegate <NSObject>

@optional
/*
 * Sycn called before animation, you can add some UIViewAnimation for other view in this method and the UIViewAnimation-task's characteristic ,it would seem like to called asycn.
 */
- (void)CYAnimatedTransitionStartAnimatingWithAnimatedTransition:(CYBaseAnimatedTransition *_Nullable)animatedTransition;

- (void)CYAnimatedTransitionEndAnimatingWithAnimatedTransition:(CYBaseAnimatedTransition *_Nullable)animatedTransition;
@end

Expansion

如果需要对动画库进行拓展,需要仔细阅读本段落

CYAnimatedTransition核心共包含三个类CYBaseAnimatedTransition、CYForwardTransition、CYInverseTransition,其中CYBaseAnimatedTransition为核心基类,CYForwardTransition、CYInverseTransition分别为正向、反向动画的基类,其中处理了一些正反向动画区别的业务,和在正向动画被创建时自动为我们创建一个反向动画并设置数据,我们拓展时创建正反向动画应该分别继承自这两个父类。

下面将以demo中的CYMagicMoveTransition为例,说明我们在拓展动画库时需要做的工作。

  • 1.新建类文件

按照Forward中自动帮我们创建反向动画对象的规则,在创建动画类文件时我们应分别命名为:

正向动画类:XXXTransition
反向动画类:XXXInverseTransition
  • 2.内部实现

  在动画对象内部重写父类的动画方法,按需实现动画细节,其中的sourceViewController和destinationViewController是转场动画发生时系统自动帮我们获取的,sourceView和destinationView是我们通过上文提到的DataSource自定义获取到的,在动画结束时,须调用

[self transitionComplete];

进行收尾处理。在反向动画内部同理,只不过反向动画内部是把dimiss或者pop当做正向。示例如下:

#import "CYMagicMoveTransition.h"

@interface CYMagicMoveTransition()

@end

@implementation CYMagicMoveTransition

#pragma mark - cover from super-class

- (void)animateTransition {
    [super animateTransition];
    
    // Get sourceView, destinationView and create sourceView's snapShot.
    UIView *snapShotView = [self.sourceView snapshotViewAfterScreenUpdates:NO];
    snapShotView.frame = [self.containerView convertRect:self.sourceView.frame fromView:self.sourceView.superview];
    snapShotView.layer.cornerRadius = 20;
    
    //Setup toVC before animating.
    self.destinationViewController.view.frame = [self.transitionContext finalFrameForViewController:self.destinationViewController];
    self.destinationViewController.view.alpha = 0;

    //Start animating.
    [self.containerView addSubview:self.destinationViewController.view];
    [self.containerView addSubview:snapShotView];
    [self.containerView layoutIfNeeded];

    self.sourceView.hidden = YES;
    self.destinationView.hidden = YES;

    [UIView animateWithDuration:[self transitionDuration:self.transitionContext] delay:0.0f usingSpringWithDamping:0.6f initialSpringVelocity:1.0f options:UIViewAnimationOptionCurveLinear animations:^{

        
        snapShotView.layer.cornerRadius = 0;
        self.destinationViewController.view.alpha = 1.0;
        snapShotView.frame = [self.containerView convertRect:self.destinationView.frame fromView:self.destinationView.superview];

    } completion:^(BOOL finished) {

        self.sourceView.hidden = NO;
        self.destinationView.hidden = NO;
        [snapShotView removeFromSuperview];
        [self transitionComplete];
    }];
}
@end
  • 关于push和present自定义动画的异同

附上两张结构图:

<div align=center><img width="700" height="315" src="https://github.com/SimonCY/CYNavigaitonController/raw/master/Img/structure_present.jpeg"/></div>

<div align=center><img width="700" height="430" src="https://github.com/SimonCY/CYNavigaitonController/raw/master/Img/structure_push.jpeg"/></div>

<a id="Hope"></a>Hope

  • If you find bug when used,Hope you can Issues me,Thank you or try to download the latest code of this framework to see the BUG has been fixed or not)
  • If you find the function is not enough when used,Hope you can Issues me,I very much to add more useful function to this framework ,Thank you !
  • 如果使用过程中发现任何问题,请issue我,我会尽快解决。
  • 如果在需求上有任何的意见或者建议,也请issue提出。

Contact to me

  • QQ:397604080 WeChat:cy397604080

License

The MIT License (MIT) - see LICENSE file.

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

推荐阅读更多精彩内容