【iOS笔记】【24】UIPresentationController的使用

本文最后更新于:2021年12月22日 中午

【主页】系列文章目录

【iOS笔记】系列目录


目录

一、简介

二、常见属性和方法

  1. init

  2. presentation will begin

  3. presentation did end

  4. dismiss will begin

  5. dismiss did end

  6. frameOfPresentedView

  7. UIViewControllerTransitioningDelegate协议

  8. 布局

三、示例代码

  1. 遵守UIViewControllerTransitioningDelegate协议

  2. 实现UIPresentationController的子类(BYPresentationController)负责呈现隐藏和动画管理


一、简介

  • 简介
    官方介绍
    An object that manages the transition animations and the presentation of view controllers onscreen.
    UIPresentationController是用于管理过渡动画和屏幕上控制器的对象。说白了就是用来控制controller之间的跳转特效。

  • 作用

    • 管理所有Modal出来的控制器
    • 管理/监听/切换控制器的过程
    • 控制器一旦调了presentViewController方法,会先创建好控制器的presentationController,然后整个控制器的切换由presentationController管理

二、常见属性和方法

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
// button action
- (void)presentAction:(UIButton *)button {
BYTipsViewController *vc = [BYTipsViewController new];
vc.view.backgroundColor = [UIColor whiteColor];
vc.transitioningDelegate = self; // 此对象要实现 UIViewControllerTransitioningDelegate 协议
vc.modalPresentationStyle = UIModalPresentationCustom;
[self presentViewController:vc animated:NO completion:nil]; // self -> BYTipsViewController -> BYPresentationController

}

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

//presentationTransitionWillBegin 是在呈现过渡即将开始的时候被调用的。我们在这个方法中把半透明黑色背景 View 加入到 containerView 中,并且做一个 alpha 从0到1的渐变过渡动画。
- (void)presentationTransitionWillBegin {

//使用UIVisualEffectView实现模糊效果
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];

}

//presentationTransitionDidEnd: 是在呈现过渡结束时被调用的,并且该方法提供一个布尔变量来判断过渡效果是否完成。在我们的例子中,我们可以使用它在过渡效果已结束但没有完成时移除半透明的黑色背景 View。
- (void)presentationTransitionDidEnd:(BOOL)completed {

// 如果呈现没有完成,那就移除背景 View
if (!completed) {
[_visualView removeFromSuperview];
}

}

//现在需要给它添加淡出动画并且在它消失后移除它,把它的 alpha 重新设回0。
- (void)dismissalTransitionWillBegin {

_visualView.alpha = 0.0;

}

//在消失完成后移除背景 View
- (void)dismissalTransitionDidEnd:(BOOL)completed{
if (completed) {
[_visualView removeFromSuperview];
}
}

//在我们的自定义呈现中,被呈现的 view 并没有完全完全填充整个屏幕,而是很小的一个矩形。被呈现的 view 的过渡动画之后的最终位置,重载 frameOfPresentedViewInContainerView 方法来定义这个最终位置
- (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

相关账号: