自定义present、dismiss动画

QAQ。看swift视频中有这个效果,自己项目中刚好要用到。就自己实现了一遍。先看效果:

AAA-BBB.gif

A页面present出来B页面,A就是presenting页面,B就是presented页面。
自定义modal动画,需要遵守几个协议。
1.UIViewControllerTransitioningDelegate,modal转场协议。和之前的自定义导航动画类似。
2.UIViewControllerAnimatedTransitioning,转场动画协议,用来自定义动画。
还有交互的动画,用来自定义手势啥的,暂时没用上。

一、UIViewControllerTransitioningDelegate
主要实现3个代理方法

-(UIPresentationController*)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(UIViewController *)presenting sourceViewController:(UIViewController *)source{
};

返回一个UIPresentationController控制器。相当于动画过程的容器。用来关联A和B两个控制器,用来自定义一些画面。比如我项目里就添加了一个黑色半透明的view,点击黑色部分也能dismiss。

//弹出

-(id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source{
}

根据方法名字就能理解,这个是present动画的代理,需要返回动画对象。
这个动画对象在下面说明。
//消失

- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed{
}

dismiss动画,和上个方法一样,需要返回动画对象。

二、UIViewControllerAnimatedTransitioning
需要实现2个代理方法
//动画的时间

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

//动画执行过程,根据自己需求写动画效果。一般uiview简单动画就能满足需求

- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext{
}

主要也就这几个代理方法。

一、遵守动画和转场协议的对象

其实转场协议也可以直接写在控制起来里,控制器遵守协议,看起来能更好理解代码过程。根据自己需求处理。
动画协议也是,自定义一个Object对象遵守或者控制器遵守都行。为了代码的简洁,我把转场协议和动画协议写在一个文件里了。

具体代码如下
PS:我转场代理和动画代理写到一个文件了。
h文件

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

@interface PresentAnimator : NSObject <UIViewControllerTransitioningDelegate, UIViewControllerAnimatedTransitioning>
//弹出页面的尺寸,由控制器管理,当然也可以写死。看需求了
@property (nonatomic, assign) CGRect presentFrame;
//present还是dismiss
@property (nonatomic, assign) BOOL isPresented;
@end

m文件,有点长

#import "PresentAnimator.h"
#import "CardListPresentC.h"

@implementation PresentAnimator

#pragma mark UIViewControllerTransitioningDelegate代理
- (UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(UIViewController *)presenting sourceViewController:(UIViewController *)source{
    
//自定义转场控制器,用来关联2个页面,直接返回就行
//ps:下面有这个文件的代码
    CardListPresentC *presentedVC = [[CardListPresentC alloc] initWithPresentedViewController:presented presentingViewController:presenting];
    presentedVC.presentFrame = self.presentFrame;
    return presentedVC;
}

//弹出
- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source{
    //present过程,返回了遵守了动画协议的对象,由于我转场协议和动画协议写在了一个文件,所以直接返回了self
    self.isPresented = YES;
    return self;
}

//消失
- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed{
//同上
    self.isPresented = NO;
    return self;
}

#pragma mark 动画代理
- (NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext{
    return 0.5;
}

- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext{
//动画过程,根据self.isPresented判断弹出还是消失,self.isPresented是由上面转场代理赋值
//弹出和消失都是这个方法,代码相似,就把transitionContext参数传递一下,分开写了。
    if (self.isPresented) {
        [self presentVC:transitionContext];
    }else{
        [self popVC:transitionContext];
    }
}

//present 过程
- (void)presentVC:(id<UIViewControllerContextTransitioning>)transitionContext {
    
//根据transitionContext上下文,取得toView,即需要弹出页面的view
    UIView *toView = [transitionContext viewForKey:UITransitionContextToViewKey];
    [transitionContext.containerView addSubview:toView];
    //进行缩放,高度变为0,就看不到了
    toView.transform = CGAffineTransformMakeScale(1, 0);
    //设置锚点,改变动画其实位置
    toView.layer.anchorPoint = CGPointMake(0.5, 1);
    //动画缩放,回复原样
    [UIView animateWithDuration:0.5 animations:^{
        toView.transform = CGAffineTransformMakeScale(1, 1);
        
    } completion:^(BOOL finished) {
        //动画结束,通知系统动画结束或者被什么打断。好像必须要写
        [transitionContext completeTransition:!transitionContext.transitionWasCancelled];
        
    }];
}

//dismiss过程
- (void)popVC:(id<UIViewControllerContextTransitioning>)transitionContext {
    
    UIView *fromView = [transitionContext viewForKey:UITransitionContextFromViewKey];
    [transitionContext.containerView addSubview:fromView];
    
    fromView.layer.anchorPoint = CGPointMake(0.5, 1);
    
    [UIView animateWithDuration:0.5 animations:^{
        fromView.transform = CGAffineTransformMakeScale(1, 0.001);
        
    } completion:^(BOOL finished) {
        [fromView removeFromSuperview];
        [transitionContext completeTransition:!transitionContext.transitionWasCancelled];
    }];
}
@end

二、自定义转场控制器

  #import "CardListPresentC.h"

  #define SWidth [UIScreen mainScreen].bounds.size.width
  #define SHeigth [UIScreen mainScreen].bounds.size.height
@interface CardListPresentC  ()

@property (nonatomic, strong) UIView *blackBGView;

@end

@implementation CardListPresentC

- (void)containerViewWillLayoutSubviews{
    
    [super containerViewWillLayoutSubviews];
    
    //
    self.presentedView.frame = self.presentFrame;
    
//添加了一个黑色半透明背景
    self.blackBGView = [[UIView alloc] initWithFrame:self.containerView.bounds];
    self.blackBGView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.5];
    [self.containerView insertSubview:self.blackBGView atIndex:0];
    
//添加一个手势,点击背景dismiss
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hiddenCardList)];
    [self.blackBGView addGestureRecognizer:tap];

}

- (void)hiddenCardList{
    //点击黑色背景执行dismiss    
    [self.presentedViewController dismissViewControllerAnimated:YES completion:nil];
}

三、控制器的调用

//确定了需要弹出页面的尺寸
 CGRect presentFrame = CGRectMake(35, SCREENHEIGHT*0.64-listHeight, SCREENWIDTH-70, listHeight+10);

//需要弹出的控制器
 BoxMCardListVC *listVC = [[BoxMCardListVC alloc] init];
listVC.dataArr = weakSelf.cardListArr;

listVC.presentFrame = presentFrame;
//声明是自定义动画
listVC.modalPresentationStyle = UIModalPresentationCustom;

//初始化转场对象
PresentAnimator *animator = [[PresentAnimator alloc] init];
animator.presentFrame = presentFrame;

//声明转场代理
listVC.transitioningDelegate = animator;
[weakSelf presentViewController:listVC animated:YES completion:nil];

demo链接

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

推荐阅读更多精彩内容