本文主要介绍UIPresentationController和UIPopoverPresentationController的使用.
UIPresentationController 是 iOS8 新增的一个 API,可以用它实现自定义的弹窗.
UIPopoverPresentationController是UIPresentationController的子类, 添加了指向箭头, 但比较丑, 一般需要自定义. 撸到底部有惊喜哦😁
一. UIPresentationController 弹窗
1. 第一步:PresentationController 主要用于自定义设置弹框背景和要显示的内容大小,继承自UIPresentationController
// ————————————— PresentationController.h
#import <UIKit/UIKit.h>
@interface PresentationController : UIPresentationController
@end
// ————————————— PresentationController.m
#import "PresentationController.h"
@interface PresentationController ()
@property (nonatomic,strong) UIVisualEffectView *visualView;
@end
@implementation PresentationController
//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];
}
}
//以上就涵盖了我们的背景 View 的呈现部分,我们现在需要给它添加淡出动画并且在它消失后移除它。正如你预料的那样,dismissalTransitionWillBegin 正是我们把它的 alpha 重新设回0的地方。
- (void)dismissalTransitionWillBegin {
_visualView.alpha = 0.0;
}
//我们还需要在消失完成后移除背景 View。做法与上面 presentationTransitionDidEnd: 类似,我们重载 dismissalTransitionDidEnd: 方法
- (void)dismissalTransitionDidEnd:(BOOL)completed {
if (completed) {
[_visualView removeFromSuperview];
}
}
//还有最后一个方法需要重载。在我们的自定义呈现中,被呈现的 view 并没有完全完全填充整个屏幕,而是很小的一个矩形。被呈现的 view 的过渡动画之后的最终位置,是由 UIPresentationViewController 来负责定义的。我们重载 frameOfPresentedViewInContainerView 方法来定义这个最终位置, 将决定PresentVC内容的位置
- (CGRect)frameOfPresentedViewInContainerView {
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;
}
@end
2. 第二步:PresentVC 主要用于自定义在PresentationController上要显示的内容
// ————————————— PresentVC.h
#import <UIKit/UIKit.h>
@interface PresentVC : UIViewController
@end
// ————————————— PresentVC.m
@implementation PresentVC
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
[self customView];
}
- (void)customView {
UIButton *cancelButton = [UIButton buttonWithType:UIButtonTypeCustom];
cancelButton.backgroundColor = [UIColor greenColor];
[cancelButton setTitle:@"取消" forState:UIControlStateNormal];
[cancelButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[cancelButton addTarget:self action:@selector(cancelButtonAction) forControlEvents:UIControlEventTouchUpInside];
cancelButton.frame = CGRectMake(0, 0, ScreenWidth, 30);
[self.view addSubview:cancelButton];
UILabel *contentLable = [[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(cancelButton.frame), ScreenWidth, 300-CGRectGetMaxY(cancelButton.frame))];
contentLable.backgroundColor = [UIColor redColor];
contentLable.text = @"contentLabel";
contentLable.textAlignment = NSTextAlignmentCenter;
[self.view addSubview:contentLable];
}
- (void)cancelButtonAction {
[self dismissViewControllerAnimated:YES completion:nil];
}
@end
3. 第三步:使用自定义的PresentationController和PresentVC 做弹窗
// 随便一个按钮的点击事件
- (void)presentButtonAction {
PresentVC *presentVC = [[PresentVC alloc] init];
// 设置 动画样式
presentVC.modalPresentationStyle = UIModalPresentationCustom;
//presentVC.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
// 此对象要实现 UIViewControllerTransitioningDelegate 协议
presentVC.transitioningDelegate = self;
[self presentViewController:presentVC animated:YES completion:nil];
}
// delegate-弹出视图代理
// 返回控制控制器弹出动画的对象
/**
presentedViewController 将要跳转到的目标控制器
presentingViewController 跳转前的原控制器
*/
- (UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented presentingViewController:(UIViewController *)presenting sourceViewController:(UIViewController *)source{
return [[PresentationController alloc] initWithPresentedViewController:presented presentingViewController:presenting];
}
二. UIPopoverPresentationController 弹窗
- (IBAction)popoverButton:(UIButton *)sender {
// UIPopoverPresentationController是iOS8以后新增的, 是UIPresentationController的子类,是UIViewController的属性。使用的的时候,需要创建的是UIViewController。UIViewController自定义内容
UIViewController *popVC = [[UIViewController alloc] init];
popVC.modalPresentationStyle = UIModalPresentationPopover;
// 弹出视图的大小
popVC.preferredContentSize = CGSizeMake(100, 200);
// 弹出视图设置
UIPopoverPresentationController *popver = popVC.popoverPresentationController;
popver.delegate = self;
//弹出时参照视图的大小,与弹框的位置有关
popver.sourceRect = self.popoverButton.bounds;
//弹出时所参照的视图,与弹框的位置有关
popver.sourceView = self.popoverButton;
//弹框的箭头方向
popver.permittedArrowDirections = UIPopoverArrowDirectionUp;
popver.backgroundColor = [UIColor orangeColor];
[self presentViewController:popVC animated:YES completion:nil];
}
// -------UIPopoverPresentationControllerDelegate
// 默认返回的是覆盖整个屏幕,需设置成UIModalPresentationNone。
- (UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller{
return UIModalPresentationNone;
}
// 设置点击蒙版是否消失,默认为YES
- (BOOL)popoverPresentationControllerShouldDismissPopover:(UIPopoverPresentationController *)popoverPresentationController{
return YES;
}
// 弹出视图消失后调用的方法
- (void)popoverPresentationControllerDidDismissPopover:(UIPopoverPresentationController *)popoverPresentationController{
}
偷偷告诉你:如果实在想用UIViewController控制器做弹窗,最简单的方式可以按下面方法写,试一下有惊喜...
// 控制器是透明的, 添加需要的控件
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor clearColor];
UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *visualView = [[UIVisualEffectView alloc] initWithEffect:blur];
visualView.frame = self.view.bounds;
visualView.alpha = 0.4;
visualView.backgroundColor = [UIColor blackColor];
[self.view addSubview:visualView];
}
// 控制器弹出方式
- (UIModalTransitionStyle)modalTransitionStyle {
return UIModalTransitionStyleCrossDissolve;
}
// 设置控制器透明
- (UIModalPresentationStyle)modalPresentationStyle {
return UIModalPresentationOverCurrentContext;
}
都撸到这里了还不给个👍