本文最后更新于:2021年12月22日 中午
目录
一、简介
二、常见属性和方法
1. init
继承自UIPresentationController
的子类若需要初始化方法,应该重写下面这个方法
1 - (instancetype )initWithPresentedViewController:(UIViewController *)presentedViewController presentingViewController:(nullable UIViewController *)presentingViewController;
2. presentation will begin
呈现过渡开始时,会调用该方法,可以在这个方法中添加自定义view并设置相关动画
1 - (void )presentationTransitionWillBegin;
3. presentation did end
呈现过渡结束时调用该方法
1 - (void )presentationTransitionDidEnd:(BOOL )completed;
4. dismiss will begin
消失过渡开始时,会调用该方法,可以在这个方法中移除自定义view并设置相关动画
1 - (void )dismissalTransitionWillBegin;
5. dismiss did end
消失过渡结束时调用该方法
1 - (void )dismissalTransitionDidEnd:(BOOL )completed;
6. frameOfPresentedView
返回目标控制器Viewframe
1 - (CGRect )frameOfPresentedViewInContainerView;
7. UIViewControllerTransitioningDelegate协议
1 2 3 4 5 6 7 8 9 10 11 12 13 @optional - (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; - (nullable UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(nullable UIViewController *)presenting sourceViewController:(UIViewController *)source API_AVAILABLE(ios(8.0 ));
8. 布局
当Presentation控制器需要重新布局时,例如旋转屏幕,会调用下面的方法,可以将布局方法写在下面的方法中
1 2 - (void )containerViewWillLayoutSubviews; - (void )containerViewDidLayoutSubviews;
这俩方法类似于
1 2 - (void )viewWillLayoutSubviews; - (void )viewDidLayoutSubviews;
三、实现步骤
涉及三个类
1 RootViewController: UIViewController
触发presentViewController方法
1 BYTipsViewController: UIViewController
被present的类
1 BYPresentationController: UIPresentationController
负责管理呈现和隐藏以及动画 最终层级为
1 RootViewController -> BYTipsViewController -> BYPresentationController
1. 遵守UIViewControllerTransitioningDelegate协议
遵守协议告知当前哪个类负责呈现和隐藏视图管理器,何处需要presentViewController,就让该类遵守并实现该协议
实现该协议
1 2 3 4 5 6 7 - (UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(UIViewController *)presenting sourceViewController:(UIViewController *)source{ BYPresentationController *vc = [[BYPresentationController alloc] initWithPresentedViewController:presented presentingViewController:presenting]; vc.showFrame = CGRectMake (10 , 100 , 300 , 500 ); return vc; }
触发呈现视图(RootViewController -> BYTipsViewController -> BYPresentationController)
1 2 3 4 5 6 7 8 9 - (void )presentAction:(UIButton *)button { BYTipsViewController *vc = [BYTipsViewController new]; vc.view.backgroundColor = [UIColor whiteColor]; vc.transitioningDelegate = self ; vc.modalPresentationStyle = UIModalPresentationCustom ; [self presentViewController:vc animated:NO completion:nil ]; }
2. 实现UIPresentationController的子类(BYPresentationController)负责呈现隐藏和动画管理
重写下面方法实现管理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 - (void )presentationTransitionWillBegin { UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight ]; _visualView = [[UIVisualEffectView alloc]initWithEffect:blur]; _visualView.frame = self .containerView.bounds; _visualView.alpha = 0.4 ; _visualView.backgroundColor = [UIColor blackColor]; [self .containerView addSubview:_visualView]; } - (void )presentationTransitionDidEnd:(BOOL )completed { if (!completed) { [_visualView removeFromSuperview]; } } - (void )dismissalTransitionWillBegin { _visualView.alpha = 0.0 ; } - (void )dismissalTransitionDidEnd:(BOOL )completed{ if (completed) { [_visualView removeFromSuperview]; } } - (CGRect )frameOfPresentedViewInContainerView { if (!CGRectEqualToRect (self .showFrame, CGRectNull ) && !CGRectEqualToRect (self .showFrame, CGRectZero )) { self .presentedView.frame = self .showFrame; return self .showFrame; } CGFloat windowH = [UIScreen mainScreen].bounds.size.height; CGFloat windowW = [UIScreen mainScreen].bounds.size.width; self .presentedView.frame = CGRectMake (0 , windowH - 300 , windowW, 300 ); return self .presentedView.frame; }
联系方式 邮箱: xiebangyao_1994@163.com 相关账号: