iOS 底部弹出视图正确姿势

由于前段时间非常忙,很久没有更新博客了。
今天给大家带来一个从底部弹出的视图控制器容器。
此容器比较适合

  • 地址选择器
  • 性别选择器
  • 各种选择器
  • 以及从底部弹出的视图

Example

例子

How usage

简单的留给别人,复杂的留给自己
只需要在需要弹出的控制器中指定代理即可

@implementation BTPresentViewController
- (instancetype)init{
    [super init];
    if (self) {
        _aniamtion = [[BTCoverVerticalTransition alloc]initPresentViewController:self withRragDismissEnabal:YES];
        self.transitioningDelegate = _aniamtion;
    }
    return self;
}
@end

如何呈现?

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    BTPresentViewController * vc = [[BTPresentViewController alloc]init];;
    [self presentViewController:vc animated:YES completion:nil];
}

和使用系统的呈现方式一样。

如何实现的

大部分轮子使用的是创建一个view,然后添加到window或者view上,然后加上动画来实现。
这种创建方式一旦创建就会一直留在内存中,不会自动释放,只能随着被添加的控制器一起释放,需要手动进行释放内存,不能做到独立管理自己的生命周期。
我认为这种方式并不是很理想。
我们完全可以根据修改转场动画实现这样的效果。
使用modal的方式呈现,dismiss后也会从内存中释放,生命周期独立管理。

  • 自定义转场动画
    实现自定义转场动画需要指定转场代理对象,和指定呈现方式为自定义。
/// 指定遵循了UIViewControllerTransitioningDelegate的对象,当然self也可以成为其代理对象。
self.transitioningDelegate = _transitioningDelegate;
/// 指定呈现方式为自定义
self.modalPresentationStyle = UIModalPresentationCustom;
  • 转场协议UIViewControllerTransitioningDelegate包含了几个方法
/// 视图呈现时的动画方法
- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source;
/// 视图dismiss时的动画方法
- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed;
/// 视图呈现执行的手势,例如我们需要向上拖拽来呈现视图
- (nullable id <UIViewControllerInteractiveTransitioning>)interactionControllerForPresentation:(id <UIViewControllerAnimatedTransitioning>)animator;
/// 视图关闭执行的手势,例如需要向下拖拽来关闭视图
- (nullable id <UIViewControllerInteractiveTransitioning>)interactionControllerForDismissal:(id <UIViewControllerAnimatedTransitioning>)animator;
/// 视图管理控制器
- (nullable UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(nullable UIViewController *)presenting sourceViewController:(UIViewController *)source NS_AVAILABLE_IOS(8_0);

创建一个代理对象,写上初始化方法,遵循并实现协议 UIViewControllerTransitioningDelegate

/// 对象遵循 UIViewControllerTransitioningDelegate 转场协议
@interface BTCoverVerticalTransition : NSObject<UIViewControllerAnimatedTransitioning,UIViewControllerTransitioningDelegate>
/// 初始化方法 默认有拖拽dismiss关闭功能
- (instancetype)initPresentViewController:(UIViewController*)viewController;
/// 初始化方法 可以传入是否关闭dismiss关闭功能
- (instancetype)initPresentViewController:(UIViewController*)viewController withRragDismissEnabal:(BOOL)enabel;
@end

实现

@implementation BTCoverVerticalTransition
- (instancetype)initPresentViewController:(UIViewController*)viewController{
    self = [super init];
    if (self) {
        self.viewController = viewController;
        viewController.modalPresentationStyle = UIModalPresentationCustom;
    }
    return self;
}

- (instancetype)initPresentViewController:(UIViewController*)viewController withRragDismissEnabal:(BOOL)enabel{
    self = [super init];
    if (self) {
        self.viewController = viewController;
        viewController.modalPresentationStyle = UIModalPresentationCustom;
        if (enabel == YES) {
            MKInteractiveTransition * interactive = [[MKInteractiveTransition alloc]initWithViewController:viewController];
            self.interactive = interactive;
        }
    }
    return self;
}

#pragma mark - UIViewControllerAnimatedTransitioning
/// 这里返回self ,让自己成为它的实现对象。
- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source{
    return self;
}
/// 这里返回self ,让自己成为它的实现对象。
- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed{
    return self;
}

/// 返回遵循UIViewControllerInteractiveTransitioning协议手势的对象。
- (id<UIViewControllerInteractiveTransitioning>)interactionControllerForDismissal:(id<UIViewControllerAnimatedTransitioning>)animator{
    return self.interactive.interative ? self.interactive : nil;
}

/// 由于我们并不需要拖拽呈现,所以不用实现这个方法
//- (nullable id <UIViewControllerInteractiveTransitioning>)interactionControllerForPresentation:(id <UIViewControllerAnimatedTransitioning>)animator{
//}

- (nullable UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(nullable UIViewController *)presenting sourceViewController:(UIViewController *)source NS_AVAILABLE_IOS(8_0){
    MKPresentationController * vc = [[MKPresentationController alloc]initWithPresentedViewController:presented presentingViewController:presenting];
    return vc;
}
/// 遵循UIViewControllerAnimatedTransitioning协议
@interface BTCoverVerticalTransition : NSObject<UIViewControllerAnimatedTransitioning,...>
...
@end

然后并实现协议


#pragma mark - UIViewControllerTransitioningDelegate
/// 这里的from to 是怎么回事呢?
/// 当呈现时,呈现的对象视图就是to,
/// 当dismiss时,关闭的对象就是from
- (void)animateTransition:(nonnull id<UIViewControllerContextTransitioning>)transitionContext {
    UIViewController * to = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
    UIViewController * from = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
    if (to.isBeingPresented) {
        [self animateTransitionForPresentTransition:transitionContext];
    }
    if (from.beingDismissed) {
        [self animateTransitionForDismiss:transitionContext];
    }
}

/// 返回一个执行动画时间 
- (NSTimeInterval)transitionDuration:(nullable id<UIViewControllerContextTransitioning>)transitionContext {
    return transitionContext.isAnimated ? 0.3 : 0;
}

#pragma mark - 
- (void)animateTransitionForPresentTransition:(nonnull id<UIViewControllerContextTransitioning>)transitionContext{
    UIViewController * to = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
    [transitionContext.containerView addSubview:to.view];
    CGRect finalFrame = [transitionContext finalFrameForViewController:to];
    to.view.frame = finalFrame;
    to.view.transform = CGAffineTransformMakeTranslation(0, finalFrame.size.height);
    [UIView animateWithDuration:[self transitionDuration:transitionContext] delay:0 usingSpringWithDamping:0.9 initialSpringVelocity:1 options:UIViewAnimationOptionCurveEaseInOut animations:^{
        to.view.transform = CGAffineTransformMakeTranslation(0, 0);
    } completion:^(BOOL finished) {
        [transitionContext completeTransition:![transitionContext transitionWasCancelled]];
    }];
}

- (void)animateTransitionForDismiss:(nonnull id<UIViewControllerContextTransitioning>)transitionContext{
    UIViewController *from = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
    CGRect finalFrame = [transitionContext finalFrameForViewController:from];
    [UIView animateWithDuration:0.25 animations:^{
        from.view.transform = CGAffineTransformMakeTranslation(0, finalFrame.size.height);
    } completion:^(BOOL finished) {
        [transitionContext completeTransition:![transitionContext transitionWasCancelled]];
    }];
}

这是上面实现的转场动画的关键部分代码,需要了解更多转场动画

建议fork,添加修改成自己想要的转场动画。

over

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

推荐阅读更多精彩内容

  • 前言的前言 唐巧前辈在微信公众号「iOSDevTips」以及其博客上推送了我的文章后,我的 Github 各项指标...
    VincentHK阅读 5,349评论 3 44
  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,093评论 1 32
  • 你可曾见过 这等的怪人 他像一坨面 拿人们的唾沫做水分 他是堆石灰借人们的冰浇得沸腾 他是根葛藤 将人们的溺液作滋...
    翘斑竹阅读 448评论 8 2
  • 名利是徒有其表,财富是身外之物;身体好什么都好,身体坏一切都是零。别拼命熬夜加班,不顾一切拼命,身体是革命的本钱,...
    中z帆f在z线x阅读 418评论 0 0
  • 爱上一个人,沉迷一个梦。 有你的梦,很暖很美,我迟迟不愿醒来。 明明很配的两个人,像极了薯条和番茄酱, 更像豆浆和...
    穿靴子的波斯猫阅读 197评论 0 0