自定义present转场动画

  • 自定义转场动画,需要遵守 UIViewControllerAnimatedTransitioning 协议,该协议有两个方法:
- (NSTimeInterval)transitionDuration:(nullable id <UIViewControllerContextTransitioning>)transitionContext;
- (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext;

第一个方法返回转场执行的时间(动画执行的时间),第二个方法是处理转场动画(想要实现什么样的转场动画,在这个方法中实现便可).
这里介绍几个背景知识:fromVC,toVC,fromView,toView,containerView
如果 A 视图控制器present到 B ,则 A 为 fromVC , A.view 为 fromView , B 为 toVC , B.view 为 toView ; 如果 B 视图控制器dismiss到 A , 则 B 为 fromVC , B.view 为 fromView , A 为 toVC , A.view 为 toView ; containerView:容器视图,所有的动画都要在容器视图上完成.
注:动画执行完成必须执行[transitionContext completeTransition:YES];

下面介绍转场动画的实现步骤:

  1. 创建继承自 NSObject 的类,并遵守 UIViewControllerAnimatedTransitioning 协议,并实现协议中的两个方法.
  2. 让presened视图控制器 遵守 UIViewControllerTransitioningDelegate 协议,设置代理为自己(self.transitioningDelegate = self;),并实现其中的两个方法:
- (nullable id < UIViewControllerAnimatedTransitioning >)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source;

- (nullable id < UIViewControllerAnimatedTransitioning >)animationControllerForDismissedController:(UIViewController *)dismissed;

两个方法的返回值类型都为 id < UIViewControllerAnimatedTransitioning >,只需要返回自定义动画类对应的方法即可.
第一个方法返回的是present时执行的动画,第二个方法返回的是dismiss时执行的动画.

代码如下:
.h 文件如下:

typedef NS_ENUM(NSInteger, DDPresentOneTransitionType) {
    DDPresentOneTransitionTypePresent = 0,
    DDPresentOneTransitionTypeDismiss
};

@interface DDPresentOneTransition : NSObject<UIViewControllerAnimatedTransitioning>

+ (instancetype)transitionWithTransitionType:(DDPresentOneTransitionType)type;

- (instancetype)initWithTransitionType:(DDPresentOneTransitionType)type;

@end
定义枚举,用来区分是presen还是dismiss,定义初始化方法,一个类方法,一个实例方法.

.m 文件如下:
```objective-c
@interface DDPresentOneTransition ()
@property (nonatomic, assign)DDPresentOneTransitionType type;
@property (nonatomic, strong) UIImageView *originalIV;//存储点击位置图片的ImageView
@property (nonatomic, strong) UIImageView *targetIV;//存储将要显示位置图片的ImageView

@end

@implementation DDPresentOneTransition

+ (instancetype _Nonnull )transitionWithTransitionType:(DDPresentOneTransitionType)type imageView:(UIImageView *_Nonnull)imageView
{
    return [[self alloc] initWithTransitionType:type imageView:imageView];
}

- (instancetype _Nonnull )initWithTransitionType:(DDPresentOneTransitionType)type imageView:(UIImageView *_Nonnull)imageView
{
    self = [super init];
    if (self) {
        _type = type;
        _originalIV = imageView;
    }
    return self;
}

- (NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext
{
    if (_type == DDPresentOneTransitionTypePresent) {
        return 0.25;
    }else{
        return 0.25;
    }
}

- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
{
    switch (_type) {
        case DDPresentOneTransitionTypePresent:
            [self presentAnimateTransition:transitionContext];
            break;
        case DDPresentOneTransitionTypeDismiss:
            [self dismissAnimateTransition:transitionContext];
            break;
        default:
            break;
    }
}

- (void)presentAnimateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
{
    UIViewController *fromVC = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
    UIViewController *toVC = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];

    UIView *containerView = [transitionContext containerView];
    containerView.backgroundColor = [UIColor whiteColor];

    UIView *tempView = [self.originalIV snapshotViewAfterScreenUpdates:YES];
    tempView.frame = [self.originalIV convertRect:self.originalIV.bounds toView:containerView];

    self.originalIV.hidden = YES;
    toVC.view.alpha = 0;

    [containerView addSubview:toVC.view];
    [containerView addSubview:tempView];

    //290*121

    UIImage *image = self.originalIV.image;
    CGFloat imageH = ceil(image.size.height);
    CGFloat imageW = ceil(image.size.width);
    CGFloat height = ceil(kScreenWidth*imageH/imageW);

    [UIView animateWithDuration:[self transitionDuration:transitionContext] animations:^{
        tempView.frame = CGRectMake(0, 0, kScreenWidth, height);

        fromVC.view.alpha = 0;
    } completion:^(BOOL finished) {
        toVC.view.alpha = 1;
        tempView.hidden = YES;
        [transitionContext completeTransition:YES];
    }];

}

- (void)dismissAnimateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
{
    UIViewController *fromVC = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
    UIViewController *toVC = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
    
    UIView *containerView = [transitionContext containerView];
    containerView.backgroundColor = [UIColor whiteColor];
    UIView *tempView = containerView.subviews.lastObject;
    
    self.originalIV.hidden = YES;
    fromVC.view.hidden = YES;
    tempView.hidden = NO;
    toVC.view.alpha = 0;
    
    [containerView insertSubview:toVC.view atIndex:0];
    
    [UIView animateWithDuration:[self transitionDuration:transitionContext] animations:^{
        tempView.frame = [self.originalIV convertRect:self.originalIV.bounds toView:containerView];
        toVC.view.alpha = 1;
    } completion:^(BOOL finished) {
        self.originalIV.hidden = NO;
        tempView.hidden = YES;
        [tempView removeFromSuperview];
        [transitionContext completeTransition:YES];
    }];
}

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

推荐阅读更多精彩内容