Present ViewController Modally
一、主要用途
弹出模态ViewController是IOS变成中很有用的一个技术,UIKit提供的一些专门用于模态显示的ViewController,如UIImagePickerController等。弹出模态ViewController主要使用于一下这几种情形:
1、收集用户输入信息
2、临时呈现一些内容
3、临时改变工作模式
4、相应设备方向变化(用于针对不同方向分别是想两个ViewController的情况)
5、显示一个新的view层级
这几种情形都会暂时中断程序正常的执行流程,主要作用是收集或者显示一些信息。
二、几个概念和常用设置
1、presenting view controller Vs presented view controller
当我们在view controller A中模态显示view controller B的时候,A就充当presenting view controller(弹出VC),而B就是presented view controller(被弹出VC)。官方文档建议这两者之间通过delegate实现交互,如果使用过UIImagePickerController 从系统相册选取照片或者拍照,我们可以发现imagePickerController和弹出它的VC之间就是通过 UIImagePickerControllerDelegate实现交互的。因此我们在实际应用用,最好也遵守这个原则,在被弹出的VC中定义 delegate,然后在弹出VC中实现该代理,这样就可以比较方便的实现两者之间的交互。
2、Modal Presentation Styles(弹出风格)
通过设置presented VC的modalPresentationStyle属性,我们可以设置弹出View Controller时的风格,有以下四种风格,其定义如下:
typedef enum { UIModalPresentationFullScreen = 0, UIModalPresentationPageSheet, UIModalPresentationFormSheet, UIModalPresentationCurrentContext, } UIModalPresentationStyle;
UIModalPresentationFullScreen代表弹出VC时,presented VC充满全屏,如果弹出VC的wantsFullScreenLayout设置为YES的,则会填充到状态栏下边,否则不会填充到状态栏之下。
UIModalPresentationPageSheet代表弹出是弹出VC时,presented VC的高度和当前屏幕高度相同,宽度和竖屏模式下屏幕宽度相同,剩余未覆盖区域将会变暗并阻止用户点击,这种弹出模式下,竖屏时跟 UIModalPresentationFullScreen的效果一样,横屏时候两边则会留下变暗的区域。
UIModalPresentationFormSheet这种模式下,presented VC的高度和宽度均会小于屏幕尺寸,presented VC居中显示,四周留下变暗区域。
UIModalPresentationCurrentContext这种模式下,presented VC的弹出方式和presenting VC的父VC的方式相同。
这四种方式在iPad上面统统有效,但在iPhone和iPod touch上面系统始终已UIModalPresentationFullScreen模式显示presented VC。
3、Modal Transition Style(弹出时的动画风格)
通过设置设置presented VC的modalTransitionStyle属性,我们可以设置弹出presented VC时场景切换动画的风格,其定义如下:
typedef enum { UIModalTransitionStyleCoverVertical = 0, UIModalTransitionStyleFlipHorizontal, UIModalTransitionStyleCrossDissolve, UIModalTransitionStylePartialCurl, } UIModalTransitionStyle;
我们可以看到有从底部滑入,水平翻转进入,交叉溶解以及翻页这四种风格可选。这四种风格在不受设备的限制,即不管是iPhone还是iPad都会根据我们指定的风格显示转场效果。
4、Dismiss Modal ViewController(消失弹出的VC)
消失presented VC,我们可以通过调用以下两个函数中的任何一个来完成
dismissModalViewControllerAnimated: // 将要废弃,不赞成继续使用 dismissViewControllerAnimated:completion:
谁来调用这消失presented VC的这个方法:正确的做法是“谁污染谁治理”,即 presenting VC调用上面的方法来取消presented VC的显示。这样做有一个好处,如果一个VC真不用户做的不同选择可能弹出不同的view controller,当不再需要显示被弹出的view controller的时候,直接调用[self dismissModalViewControllerAnimated]即可使之消失,而不用去关心 其具体显示的哪一类view controller。当然系统在这里做了优化,当我们在presented VC里面调用上面的方法的时候,系统会自动的将这个消息传递到相应的presenting VC中,这样就可以实现不管谁弹出了自己,当不再需要的时候直接将自己消失掉的功能。在应用中具体要采用那种要看具体情况,如果presented VC需要和presenting VC有数据传递的话,建议在presenting VC实现的代理函数中dismiss弹出的view controller。
相关推荐
需要注意的是,这种方法假设了ViewController的展示方式主要是通过`presentViewController:animated:completion:`、`pushViewController:animated:`以及`tabBarController(_:didSelectViewController:)`等标准方法...
转场动画这事,说简单也简单,可以通过presentViewController:animated:completion:和dismissViewControllerAnimated:completion:这一组函数以模态视图的方式展现、隐藏视图。如果用到了navigationController,还...
[self presentViewController:NVC animated:YES completion:nil]; } ``` ```objectivec // Next_ViewController.h @property(nonatomic,copy) void(^block)(NSString *content); ``` 在上面的示例中,我们使用 ...
[self presentViewController:picker animated:YES completion:nil]; } else if (buttonIndex == 1) { // 从相册选择 UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker....
[self presentViewController:picker animated:YES completion:nil]; ``` 通过以上介绍,我们可以看出iOS14在保护用户隐私方面做出了一系列改进,这些变化要求开发者必须对应用进行适当的调整以确保与新系统的...
当用户点击按钮时,会调用`-btnclick`方法,该方法创建了一个新的`BackViewController`实例,并使用`presentViewController:animated:completion:`方法将其呈现出来。`BackViewController`是我们用来显示新功能提示...
[self presentViewController:picker animated:YES completion:nil]; ``` 其中,`UzysAssetsPickerControllerDelegate`协议定义了若干回调方法,用于处理用户的选择操作,如: ```objc - (void)...
3. 使用`presentViewController:animated:completion:`方法弹出选择联系人控制器。 4. 在代理方法`peoplePickerNavigationControllerDidCancel:`和`peoplePickerNavigationController:didSelectPerson:`中处理用户的...
[self presentViewController:imagePickerController animated:YES completion:nil]; ``` 7. 错误处理: 同时,还需要实现`imagePickerController:didFailWithError:`方法,处理可能出现的错误: ```objc - ...
在iOS中,使用`pushViewController:animated:`或`presentViewController:animated:completion:`。同时,要注意维护好视图的状态,确保在切换后能够正确恢复。 4. **窗口(Window)**:窗口是视图的容器,负责将视图...
[self presentViewController:imagePickerController animated:YES completion:nil]; } - (void)imagePickerController:(UIImagePickerController *)controller didFinishPickingMediaWithInfo:(NSDictionary,id> ...
[self presentViewController:mailComposeViewController animated:YES completion:nil]; } else { NSLog(@"无法发送邮件。请在设备上配置邮件账户。"); } } // 实现MFMailComposeViewControllerDelegate方法 -...
[self presentViewController:reader animated:YES completion:nil]; ``` 在实现`ZBarReaderDelegate`协议后,你可以接收并处理扫描结果: ```objc - (void)imagePickerController:(UIImagePickerController *)...
- 调用`presentViewController:animated:completion:`方法展示支付授权视图控制器。 - **处理支付结果:** - 实现`PKPaymentAuthorizationViewControllerDelegate`协议中的方法来接收支付结果。 - 根据返回的支付...
如果存在presentedViewController,说明当前控制器是通过present方式显示的,那么就更新currentViewController为presentedViewController。如果当前控制器是UINavigationController,那么从其childViewControllers...
[self presentViewController:imagePickerController animated:YES completion:nil]; } - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary,id> *)...
[self presentViewController:mediaPicker animated:YES completion:nil]; ``` 当用户选择音频并点击“选择”按钮,代理方法(如mediaPicker:didPickMediaItems:)会被调用,这时可以获取到用户选择的媒体项: ```...