自定义转场--简单实现

最近公司让做和系统相似的图片展示功能, 于是就顺带的研究一一下转场功能的实现(也就是自定义转场功能).
针对于网上那些我都看不太懂的程序, 我自己想也一点,用来做个记录.
1.对于相册照片的点击功能大家应该都比较了解. 点击图片, 图片从原位置进行放大, 而我们可以清晰的看到放大的效果示例. 那么这个问题就来了,
(1)展示图片的这个是一个什么? 控制器? 视图? 还是什么的?
(2)它是怎么去实现动画功能?
(3)它是以什么情况弹出的控制器 modal??
(4)为什么弹出的位置可以随心所欲呢?

2.在苹果WWDC2014的时候,苹果给我提供了两个用于转场动画的协议.
UIViewControllerTransitioningDelegate 控制器转场代理协议
UIViewControllerAnimatedTransitioning 控制器转场动画协议
内部提供了很多方法, 目的在于让我们更精准的控制自己的转场动画.

// 转场协议 .
@protocol UIViewControllerTransitioningDelegate <NSObject>

@optional
//  需要返回一个遵守协议的对象, 此对象可控制动画的行为. 动画控制 展示情况
/*
  三个参数:
  1.PresentedController: 被展示出来的控制器
  2.Presenting: 发起展示的控制器
  3.source: 资源控制器 
    返回值 ,用来设置样式,只要遵守协议的控制器,都是可以的

*/
- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source;
// 转场 消失时的动画
- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed;
// 下面两个方法是用在交互时, 我还没有好的认识, 所以暂不接受
// 交互
- (nullable id <UIViewControllerInteractiveTransitioning>)interactionControllerForPresentation:(id <UIViewControllerAnimatedTransitioning>)animator;

- (nullable id <UIViewControllerInteractiveTransitioning>)interactionControllerForDismissal:(id <UIViewControllerAnimatedTransitioning>)animator;


// 这个方法很重要 , 如果要改变样式的话, 自定义modal的话,必须调用.  它返回的控制器,包含着 衔接 被展示和 发起展示的控制器. 
- (nullable UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(UIViewController *)presenting sourceViewController:(UIViewController *)source NS_AVAILABLE_IOS(8_0);
@end

说了这么多我想大家都懵了, 现在给展示展示一些相关的应用吧


自定义转场1.gif

因为我们一般对于一些衔接性不是很强的控制器,都是采用modal直接进行弹出的, 但是我们有时候也需要它从我们想要的地方,以我们需要的方式进行展示才可以, 这时候我们需要自定义转场(modal)动画.

具体步骤

给需要转场的控制器设置代理和转场类型.

  1. 设置转场的代理,(自己实现转场 ,做了一些自己想做的事情,代理方法中书写)
    控制器属性 transitionDelegate需要遵守协议: UIViewControllerTransitionDelegate
  2. 设置转场的类型,(因为不需要系统从下往上的死板推出, 所以类型需要重新设置 , 在iphone中 转场类型除custom以外都是从下往上推的,但ipad 可以应用于其他转场类型)
    modalPresentationStyle

代理这么一个属性,只要是遵守了相关协议都可以作为他的代理, 所以为了方便起见(以后能够抽出来用),建立了一个专门用来处理转场的类 CustomModalUpDown的类(形象说明自定义上下转场)
继承于NSobject,遵守UIViewControllerTransitioningDelegate协议
控制器中代码形式:
--实例代码先用Swift进行书写


// 将代码封装成工具类, 以便以后使用
   private lazy var customModal = CustomModalUpDown()

 // 加载storyboard中的控制器
        let sb = UIStoryboard.init(name: "PopoverViewController", bundle: nil)
        let popVc = sb.instantiateInitialViewController()!
        // 设置 转场代理
        popVc.transitioningDelegate = customModal
// 设置转场类型
        popVc.modalPresentationStyle = UIModalPresentationStyle.Custom
        // modal出控制器
        presentViewController(popVc, animated: true, completion: nil)

工具类专门用来做modal

// 定义一个通知name,用于model出来
let LXLPopoverViewShow = "LXLPopoverViewShow"
// 定义一个通知name,用于dismiss
let LXLPopoverViewDismiss = "LXLPopoverViewDismiss"

import UIKit
class CustomModalUpDown: NSObject,UIViewControllerTransitioningDelegate,UIViewControllerAnimatedTransitioning {
    
    // 定义变量,记录是否已经pop出来控制器
   private var isPop : Bool = false
// 传递
    var presentFrame : CGRect = CGRectZero
        // MARK: - UIViewControllerTransitioningDelegate -代理方法
        /// 如果是改变样式的话,也就是改变显示的尺寸, 必须调用这个方法
        func presentationControllerForPresentedViewController(presented: UIViewController, presentingViewController presenting: UIViewController, sourceViewController source: UIViewController) -> UIPresentationController?
        {
// 自己定义一个 PresentationController 继承于 UIPresentationController,  内部包含上下文,  可以修改上下文内容.  我在后面接收自定义这个类都干了什么.
            let presentC = PresentationController(presentedViewController: presented, presentingViewController: presenting)
// 将外界的 尺寸进行传入
            presentC.presentFrame = presentFrame
            return presentC
        }
        
        // modal展示出控制器时的动画
        // presented:被展示的控制器
        // presenting:发起展示的控制器
        // source: 资源控制器 (用来设置样式.只要遵守协议的控制器,都是可以的)
        func animationControllerForPresentedController(presented: UIViewController, presentingController presenting: UIViewController, sourceController source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
            isPop = true
//            NSNotificationCenter.defaultCenter().postNotificationName(LXLPopoverViewShow, object: self)
            return self
        }
        // modal 消失时的动画
        func animationControllerForDismissedController(dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
            isPop = false
            NSNotificationCenter.defaultCenter().postNotificationName(LXLPopoverViewDismiss, object: self)
            return self
        }
        // MARK : - UIViewControllerAnimatedTransitioning - 代理方法
        /// 返回转场时间, 一般没人管
        func transitionDuration(transitionContext: UIViewControllerContextTransitioning?) -> NSTimeInterval
        {
            return 888
        }
        /// 设置转场动画,利用上下文
        func animateTransition(transitionContext: UIViewControllerContextTransitioning)
        {
            let presentView : UIView!
            
// 展示和dismiss的时候,它的上下文中的 from  和 to对应得刚好相反.  
            if isPop {
                // 取出上下文中的 展示控制器的view
                presentView = transitionContext.viewForKey(UITransitionContextToViewKey)!
                presentView.layer.anchorPoint = CGPoint(x: 0.5, y: 0)
                // warning 将view需要手动加到 内容view上,才能显示 , 相当于自己还要在进行创建内容控制器一样.
                transitionContext.containerView()?.addSubview(presentView)
                presentView.transform = CGAffineTransformMakeScale(1.0, 0.0)
                UIView.animateWithDuration(0.5, animations: { () -> Void in
                    presentView.transform = CGAffineTransformIdentity
                    }) { (_) -> Void in
// 完成时,一定记得关闭上下文,负责动画无法完成.
                        transitionContext.completeTransition(true)
                }
            }else{
                // 取出上下文中的 展示控制器的view
                presentView = transitionContext.viewForKey(UITransitionContextFromViewKey)!
                // waring 将view需要手动加到 内容view上,才能显示 , 相当于自己还要在进行创建内容控制器一样.
                transitionContext.containerView()?.addSubview(presentView)
                UIView.animateWithDuration(0.5, animations: { () -> Void in
                    presentView.transform = CGAffineTransformMakeScale(1.0, 0.0000001)
                    }) { (_) -> Void in
// 完成时,一定记得关闭上下文,负责动画无法完成.
                        transitionContext.completeTransition(true)
                }       
            }
            
        }
        
    }

自定义展示控制器(主要是取得其上下文, 进行添加层次.)

import UIKit

class PresentationController: UIPresentationController {
  // 设置尺寸, 供外界设置 展示控制器的大小
    var presentFrame : CGRect = CGRectZero
    /// 负责布局 内容容器中的子控件的 (此方法值调用一次)
    override func containerViewWillLayoutSubviews() {
        super.containerViewWillLayoutSubviews()
        let view = presentedView()
// 自己进行设置被展示的view的大小 (当然我是希望外界可以进行传递的), 如果外界没有, 那我自己进行设置
        view?.frame = (presentFrame == CGRectZero) ? CGRect(x: 100, y: 56, width: 150, height: 300) : presentFrame
// containerView中存放着  modal双方的 视图 . 然后自己进行插入蒙版视图
        containerView?.insertSubview(cover, atIndex: 0)

    }
    
    // MARK: -懒加载蒙版
   private lazy var cover : UIView = {
    let view = UIView(frame: UIScreen.mainScreen().bounds)
    view.backgroundColor = UIColor(white: 0.5, alpha: 0.2)
        
    let tap = UITapGestureRecognizer(target: self, action: Selector("dismissView"))
    view.addGestureRecognizer(tap)
     return view
    }()
    
    //MARK :- 点击事件的监听
    func dismissView()
    {
        // 拿到被展示的控制器, 然后让其消失
        presentedViewController.dismissViewControllerAnimated(true, completion: nil)
    }
}

OC部分的代码---- 相当于只是一个转换
简单的实现, 简单粗暴吧


oc自定义转场.gif

自定义类,专门管理转场,遵守两个协议,一个代理, 一个动画协议

// .h文件
#import <UIKit/UIKit.h>

@interface CustomModal : NSObject<UIViewControllerTransitioningDelegate,UIViewControllerAnimatedTransitioning>
@property(assign,nonatomic) CGRect rect;
@end

//.m文件
#import "CustomModal.h"
#import "PresentController.h"
@interface CustomModal()
@property(nonatomic,assign) BOOL isPop;
@end
@implementation CustomModal

- (UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(UIViewController *)presenting sourceViewController:(UIViewController *)source
{
    PresentController *presentationVC = [[PresentController alloc]initWithPresentedViewController:presented presentingViewController:presenting];
    [presentationVC setRect:self.rect];
    return presentationVC;
}

- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source
{
    self.isPop = YES;
    return self;
}
- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed
{
    self.isPop = NO;
    return self;
}
- (NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext
{
    return 0.5;
}
- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
{
    UIView *presentView = [[UIView alloc]init];
    if (self.isPop) {
        presentView = [transitionContext viewForKey:UITransitionContextToViewKey];
        presentView.layer.anchorPoint = CGPointMake(0.5, 0);;
        [[transitionContext containerView] addSubview:presentView];
        presentView.transform = CGAffineTransformMakeScale(1.0, 0.0);
        [UIView animateWithDuration:0.5 animations:^{
            presentView.transform = CGAffineTransformIdentity;
        } completion:^(BOOL finished) {
            [transitionContext completeTransition:YES];
        }];
    }else
        {
            presentView = [transitionContext viewForKey:UITransitionContextFromViewKey];
            [[transitionContext containerView] addSubview:presentView];
            [UIView animateWithDuration:0.5 animations:^{
                presentView.transform = CGAffineTransformMakeScale(1.0, 0.00001);
            } completion:^(BOOL finished) {
                [transitionContext completeTransition:YES];
            }];
    
    
    }
    
}
@end

自定义类,专门用于转场展示view的处理

// .h文件

#import <UIKit/UIKit.h>

@interface PresentController : UIPresentationController

- (void)setRect: (CGRect)rect;
@end

// .m文件
#import "PresentController.h"
@interface PresentController()
@property(nonatomic,strong) UIView  *cover;
@end
@implementation PresentController

- (UIView *)cover
{
    if (_cover == nil) {
        NSLog(@"________");
        UIView *cover = [[UIView alloc]initWithFrame:[UIScreen mainScreen].bounds];
        cover.backgroundColor = [[UIColor alloc]initWithWhite:0.2 alpha:0.5];
        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(clickDismiss)];
        [cover addGestureRecognizer:tap];
        _cover = cover;
    }
    return _cover;
}
- (void)containerViewWillLayoutSubviews
{
    [super containerViewWillLayoutSubviews];
    
//    UIView *presentView = self.presentedView;
    [self.containerView insertSubview:self.cover atIndex:0];
    
}
- (void)setRect:(CGRect)rect
{
    self.presentedView.frame = rect;
}

- (void)clickDismiss
{
    [self.presentedViewController dismissViewControllerAnimated:YES completion:nil];

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

推荐阅读更多精彩内容