iOS:模态弹出窗控制器UIPopoverPresentationController

简介:

模态弹出窗控制器:UIPopoverPresentationController

 

实质:就是将内容控制器包装成PopoverPresentationController的形式,然后再模态出来,必须指定来源视图及其frame区域,也即指向谁。

 

功能:它也是一个弹出窗控制器,它在iOS8中替代了UIPopoverController,它在功能上与旧的controller完全等同,并且新增了一些内置的适配特性,可以自动适配iPad与iPhone。当然它也需要一个继承于UIViewController的控制器作为内容控制器,然后模态它的窗口,即显示弹出窗。

 

枚举:模态显示类型

typedef NS_ENUM(NSInteger, UIModalPresentationStyle) {

        UIModalPresentationFullScreen = 0,

        UIModalPresentationPageSheet ,

        UIModalPresentationFormSheet ,

        UIModalPresentationCurrentContext ,

        UIModalPresentationCustom ,

        UIModalPresentationOverFullScreen ,

        UIModalPresentationOverCurrentContext ,

        UIModalPresentationPopover , //模态显示弹出窗

        UIModalPresentationNone  = -1,         

 

};

模态弹出窗控制器介绍:

@interface UIPopoverPresentationController : UIPresentationController

属性:

//模态弹出窗控制器代理

@property (nonatomic, assign) id <UIPopoverPresentationControllerDelegate> delegate;

//弹出窗箭头方向

@property (nonatomic, assign) UIPopoverArrowDirection permittedArrowDirections;

//弹出窗显示的视图资源

@property (nonatomic, retain) UIView *sourceView;

//弹出窗显示的区域

@property (nonatomic, assign) CGRect sourceRect;

//工具条按钮

@property (nonatomic, retain) UIBarButtonItem *barButtonItem;

//弹出窗箭头方向(只读)

@property (nonatomic, readonly) UIPopoverArrowDirection arrowDirection;

//过滤视图控件,设置不可与用户做交互

@property (nonatomic, copy) NSArray *passthroughViews;

//弹出窗背景颜色

@property (nonatomic, copy) UIColor *backgroundColor;

//弹出窗偏移位置

@property (nonatomic, readwrite) UIEdgeInsets popoverLayoutMargins;

//弹出窗背景视图的类

@property (nonatomic, readwrite, retain) Class <UIPopoverBackgroundViewMethods> popoverBackgroundViewClass;

@end

 

协议:

@protocol UIPopoverPresentationControllerDelegate

@optional

//模态弹出窗窗口时触发的方法,可以进行数据传输

- (void)prepareForPopoverPresentation:(UIPopoverPresentationController*)popoverPresentationController;

//将要关闭弹出窗窗口时触发的方法

- (BOOL)popoverPresentationControllerShouldDismissPopover:(UIPopoverPresentationController*)popoverPresentationController;

//已经关闭弹出窗窗口时触发的方法

- (void)popoverPresentationControllerDidDismissPopover (UIPopoverPresentationController*) popoverPresentationController;

//弹出窗将要复位到指定视图区域时触发的方法

- (void)popoverPresentationController:(UIPopoverPresentationController*)popoverPresentationController willRepositionPopoverToRect:(inout CGRect *)rect inView:(inout UIView**)view;

@end

 

 

视图控制器类

@interface UIViewController 

//设置内容控制器大小

@property (nonatomic) CGSize preferredContentSize

 //模态显示类型

 @property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle 

 @end

 

视图控制器分类(适配显示)

 @interface UIViewController (UIAdaptivePresentations)

 //管理模态窗口的显示控制器(presentingViewController、presentedViewController)

 @property (nonatomic,readonly) UIPresentationController *presentationController;

 //模态弹出窗控制器

 @property (nonatomic,readonly) UIPopoverPresentationController *popoverPresentationController ;

 @end

 

演示实例如下:

1.创建一个继承自UIViewController的内容控制器ContentViewController:

2.需要的文件截图为:

3.在内容控制器ContentViewController.m文件中设置模态弹出窗的大小和背景颜色

复制代码
- (void)viewDidLoad {
    [super viewDidLoad];
    
    //设置内容区域大小
    self.preferredContentSize = CGSizeMake(100, 200);
    
    //设置内容背景颜色
    self.view.backgroundColor = [UIColor blueColor];
}
复制代码

4.在ViewController.m文件中操作的代码如下:

//声明必要的属性

复制代码
@interface ViewController ()
@property (strong,nonatomic)UIPopoverPresentationController *popoverPresentVC;//声明模态弹出窗控制器
@property (strong,nonatomic)UIPopoverController *popoverVC;   //声明弹出窗控制器
@property (strong,nonatomic)ContentViewController *contentVC; //声明内容控制器
@end
复制代码

 //创建按钮,并添加按钮事件,用来打开模态弹出窗

复制代码
    //创建按钮
    UIButton *button = [[UIButton alloc]initWithFrame:CGRectMake(100, 100, 40, 40)];
    
    //设置按钮背景颜色
    button.backgroundColor = [UIColor purpleColor];
    
    //设置按钮标题
    [button setTitle:@"打开" forState:UIControlStateNormal];
    
    //添加按钮事件
    [button addTarget:self action:@selector(Open:) forControlEvents:UIControlEventTouchUpInside];
    
    //将按钮添加到视图中
    [self.view addSubview:button];
复制代码

 //实现按钮事件

复制代码
#pragma mark -打开弹窗(将内容控制器以模态窗口的形式打开和关闭)
-(void)Open:(UIButton *)sender
{
    if (!self.popoverVC.isPopoverVisible)
    {
        //创建内容控制器
        self.contentVC = [[ContentViewController alloc]init];
        
        //设置内容控制器模态显示类型为模态弹出窗
        self.contentVC.modalPresentationStyle = UIModalPresentationPopover;
        
        //创建popoverPresentVC模态弹出窗控制器,包装内容控制器
        self.popoverPresentVC = self.contentVC.popoverPresentationController;
        
        //设置一直显示后,即使点击按钮,此时弹窗也关闭不了,所以不这么设置
        //[self.popoverPresentVC setPassthroughViews:@[self.view,sender]];
        
        //设置模态弹窗的显示区域
        self.popoverPresentVC.sourceView = sender;
        self.popoverPresentVC.sourceRect = sender.bounds;
        
        //设置箭头方向自适应
        self.popoverPresentVC.permittedArrowDirections = UIPopoverArrowDirectionAny;
        
        //打开模态窗口
        [self presentViewController:self.contentVC animated:YES completion:nil];
    }
    else
    {
        //关闭模态弹窗
        [self.contentVC dismissViewControllerAnimated:YES completion:nil];
    }
}
复制代码

 演示结果截图:

开始时:                                                 点击按钮时,模态出内容弹出窗:

   

在点击屏幕中任何一处时,都可以关闭模态的弹出窗:

程序猿神奇的手,每时每刻,这双手都在改变着世界的交互方式!
分类:  iOS高级

本文转自当天真遇到现实博客园博客,原文链接:http://www.cnblogs.com/XYQ-208910/p/4897146.html,如需转载请自行联系原作者
相关文章
【我们都爱Paul Hegarty】斯坦福IOS8公开课个人笔记42 Modal Segue(模态过渡)
modal segue会占据整个屏幕,所以使用的使用一定要小心,提前做好返回的处理,使用modal segue的好处是在执行某项操作前必须,比如我们熟悉的alert和actionsheet。
768 0
iOS7应用开发16:模态segue、文本框、警告、Action Sheet
1、模态segue(Modal Segue): 这是除了popover和embed之外的另一种视图控制器切换的方法。当切换到模态视图控制器Modal View Controller出现时,该控制器将占据整个可操作空间知道该控制器消失。
1013 0
|
24天前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
1天前
|
iOS开发 开发者 MacOS
深入探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】 本文将带领读者深入了解Apple最新推出的SwiftUI框架,这一革命性的用户界面构建工具为iOS开发者提供了一种声明式、高效且直观的方式来创建复杂的用户界面。通过分析SwiftUI的核心概念、主要特性以及在实际项目中的应用示例,我们将展示如何利用SwiftUI简化UI代码,提高开发效率,并保持应用程序的高性能和响应性。无论你是iOS开发的新手还是有经验的开发者,本文都将为你提供宝贵的见解和实用的指导。
77 66
|
11天前
|
开发框架 Android开发 iOS开发
安卓与iOS开发中的跨平台策略:一次编码,多平台部署
在移动应用开发的广阔天地中,安卓和iOS两大阵营各占一方。随着技术的发展,跨平台开发框架应运而生,它们承诺着“一次编码,到处运行”的便捷。本文将深入探讨跨平台开发的现状、挑战以及未来趋势,同时通过代码示例揭示跨平台工具的实际运用。
|
15天前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
17天前
|
存储 前端开发 Swift
探索iOS开发:从新手到专家的旅程
本文将带您领略iOS开发的奇妙之旅,从基础概念的理解到高级技巧的掌握,逐步深入iOS的世界。文章不仅分享技术知识,还鼓励读者在编程之路上保持好奇心和创新精神,实现个人成长与技术突破。
|
20天前
|
安全 IDE Swift
探索iOS开发之旅:从初学者到专家
在这篇文章中,我们将一起踏上iOS开发的旅程,从基础概念的理解到深入掌握核心技术。无论你是编程新手还是希望提升技能的开发者,这里都有你需要的指南和启示。我们将通过实际案例和代码示例,展示如何构建一个功能齐全的iOS应用。准备好了吗?让我们一起开始吧!
|
25天前
|
安全 Swift iOS开发
Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法
本文深入探讨了 Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法。Swift 以其简洁、高效和类型安全的特点,结合 UIKit 丰富的组件和功能,为开发者提供了强大的工具。文章从 Swift 的语法优势、类型安全、编程模型以及与 UIKit 的集成,到 UIKit 的主要组件和功能,再到构建界面的实践技巧和实际案例分析,全面介绍了如何利用这些技术创建高质量的用户界面。
28 2