首页 > 模态视图(转)

模态视图(转)

转载请注明出处,原文网址:http://blog.csdn.net/m_changgong/article/details/8127894 作者:张燕广

模态视图不是专门的某个类,而是通过视图控制器的presentViewController方法弹出的视图,我们称为模态视图。

  • 模态视图出现的场景一般是临时弹出的窗口,譬如:登录窗口;
  • 模态视图弹出时通过对视图对象的modalTransitionStyle来设置动画效果;
  • 在弹出的视图中使用dismissViewControllerAnimated方法关闭窗口。

实现的功能:1)通过弹出一个ModalView(模态视图),实现多视图;2)主界面上点击按钮弹出Info界面,在该界面上点击返回,返回到主界面。

关键词:多视图 MultiView模态视图 ModalView

1、创建一个Empty Application工程,命名为:MultiView-ModalView,如下图

2、选中工程中的Group MultiView-ModalView,然后按住CMD(Windows键)+N,新建视图控制器MainViewController,如下图

3、依照上步操作,新建视图控制器InfoViewController。

4、编辑MainViewController.xib,添加一个Label和Button,如下图

5、编辑InfoViewController.xib,添加一个Label和Button,如下图



6、修改MainViewController.h,如下

[cpp] view plaincopy
  1. "font-family:Microsoft YaHei;font-size:18px;">//  
  2. //  MainViewController.h  
  3. //  MultiView-ModalView  
  4. //  
  5. //  Created by Zhang Yanguang on 12-10-26.  
  6. //  Copyright (c) 2012年 MyCompanyName. All rights reserved.  
  7. //  
  8.   
  9. #import   
  10. #import "InfoViewController.h"  
  11. @interface MainViewController : UIViewController  
  12. @property(nonatomic,retain)InfoViewController *infoViewController;  
  13.   
  14. -(IBAction)showInfoView:(id)sender;  
  15. @end  

将操作showInfoView与MainViewController.xib中的button的Touch Up Inisde进行关联。

7、修改MainViewController.m,主要是实现showInfoView方法,如下

 

[cpp] view plaincopy
  1. "font-family:Microsoft YaHei;font-size:18px;">//  
  2. //  MainViewController.m  
  3. //  MultiView-ModalView  
  4. //  
  5. //  Created by Zhang Yanguang on 12-10-26.  
  6. //  Copyright (c) 2012年 MyCompanyName. All rights reserved.  
  7. //  
  8.   
  9. #import "MainViewController.h"  
  10.   
  11. @interface MainViewController ()  
  12.   
  13. @end  
  14.   
  15. @implementation MainViewController  
  16. @synthesize infoViewController;  
  17.   
  18. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  
  19. {  
  20.     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  
  21.     if (self) {  
  22.         // Custom initialization  
  23.     }  
  24.     return self;  
  25. }  
  26.   
  27. - (void)viewDidLoad  
  28. {  
  29.     [super viewDidLoad];  
  30.     // Do any additional setup after loading the view from its nib.  
  31.     //设置背景颜色  
  32.     self.view.backgroundColor = [UIColor grayColor];  
  33. }  
  34.   
  35. -(void)dealloc{  
  36.     [infoViewController release];  
  37. }  
  38.   
  39. -(IBAction)showInfoView:(id)sender{  
  40.     if(infoViewController == nil){  
  41.         infoViewController = [[InfoViewController alloc]initWithNibName:@"InfoViewController" bundle:nil];  
  42.         //NSLog(@"infoViewController is nil");  
  43.     }else{  
  44.         //NSLog(@"infoViewController is not nil");  
  45.     }  
  46.     infoViewController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;  
  47.       
  48.     //[self presentModalViewController:infoViewController animated:YES];//备注1  
  49.     [self presentViewController:infoViewController animated:YES completion:^{ //备注2  
  50.         NSLog(@"show InfoView!");  
  51.     }];  
  52.       
  53.     //presentedViewController  
  54.     NSLog(@"self.presentedViewController=%@",self.presentedViewController);//备注3  
  55. }  
  56.   
  57. - (void)viewDidUnload  
  58. {  
  59.     [super viewDidUnload];  
  60.     // Release any retained subviews of the main view.  
  61.     // e.g. self.myOutlet = nil;  
  62.     infoViewController = nil;  
  63. }  
  64.   
  65. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation  
  66. {  
  67.     return (interfaceOrientation == UIInterfaceOrientationPortrait);  
  68. }  
  69.   
  70. @end  

 

 

备注1、备注2:备注中的方法已经废弃,被备注2中的presentViewController代替;参数completion实现一个回调,当MainViewController的viewDidDisappear调用之后,该回调会被调用。

备注3:在MainViewController中调用self.presentedViewController,返回的是由MainViewController present出的视图控制器,在这里即是:infoViewController。

8、修改InfoViewController.h,如下

[cpp] view plaincopy
  1. "font-family:Microsoft YaHei;font-size:18px;">//  
  2. //  InfoViewController.h  
  3. //  MultiView-ModalView  
  4. //  
  5. //  Created by Zhang Yanguang on 12-10-26.  
  6. //  Copyright (c) 2012年 MyCompanyName. All rights reserved.  
  7. //  
  8.   
  9. #import   
  10.   
  11. @interface InfoViewController : UIViewController  
  12.   
  13. -(IBAction)backMainView:(id)sender;  
  14. @end  
  15.   

将操作backMainView与InfoViewController.xib中的button的Touch Up Inisde进行关联。

9、修改InfoViewController.m,主要是实现方法backMainView,如下

[cpp] view plaincopy
  1. "font-family:Microsoft YaHei;font-size:18px;">//  
  2. //  InfoViewController.m  
  3. //  MultiView-ModalView  
  4. //  
  5. //  Created by Zhang Yanguang on 12-10-26.  
  6. //  Copyright (c) 2012年 MyCompanyName. All rights reserved.  
  7. //  
  8.   
  9. #import "InfoViewController.h"  
  10.   
  11. @interface InfoViewController ()  
  12.   
  13. @end  
  14.   
  15. @implementation InfoViewController  
  16.   
  17. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  
  18. {  
  19.     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  
  20.     if (self) {  
  21.         // Custom initialization  
  22.     }  
  23.     return self;  
  24. }  
  25.   
  26. - (void)viewDidLoad  
  27. {  
  28.     [super viewDidLoad];  
  29.     // Do any additional setup after loading the view from its nib.  
  30.     //设置背景颜色  
  31.     self.view.backgroundColor = [UIColor greenColor];  
  32. }  
  33.   
  34. - (void)viewDidUnload  
  35. {  
  36.     [super viewDidUnload];  
  37.     // Release any retained subviews of the main view.  
  38.     // e.g. self.myOutlet = nil;  
  39. }  
  40.   
  41. -(IBAction)backMainView:(id)sender{   
  42.     NSLog(@"self.parentViewController=%@",self.parentViewController);  
  43.     //[self.parentViewController dismissViewControllerAnimated:YES completion:nil];//备注4  
  44.       
  45.     /* 
  46.      If this view controller is a child of a containing view controller (e.g. a navigation controller or tab bar 
  47.      controller,) this is the containing view controller.  Note that as of 5.0 this no longer will return the 
  48.      presenting view controller. 
  49.      */  
  50.     NSLog(@"self.presentedViewController=%@",self.presentedViewController);  
  51.     //[self.presentedViewController dismissViewControllerAnimated:YES completion:nil]; //备注5  
  52.       
  53.     NSLog(@"self.presentingViewController=%@",self.presentingViewController);  
  54.     //[self.presentingViewController dismissViewControllerAnimated:YES completion:nil];//备注6  
  55.       
  56.     // Dismiss the current modal child. Uses a vertical sheet transition if animated. This method has been replaced by dismissViewControllerAnimated:completion:  
  57.     // It will be DEPRECATED, plan accordingly.  
  58.     //[self dismissModalViewControllerAnimated:YES];//备注7  
  59.     [self dismissViewControllerAnimated:YES completion:nil];//备注8  
  60. }  
  61.   
  62. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation  
  63. {  
  64.     return (interfaceOrientation == UIInterfaceOrientationPortrait);  
  65. }  
  66.   
  67. @end  



备注4:不能正常工作,该代码不能实现返回到MainViewController的功能,因为MainViewController并不是InfoViewController的父视图控制器(父子试图控制器以后会讲到),该方法的注释如下:

/*

  If this view controller is a child of a containing view controller (e.g. a navigation controller or tab bar

  controller,) this is the containing view controller.  Note that as of 5.0 this no longer will return the

  presenting view controller.

*/

备注5:不能正常工作,代码也不能实现返回到MainViewController的功能,备注3中已解释过self.presentedViewController,在此处一定返回空。

备注6:可以正常工作,改代码可以实现返回到MainViewController的功能, self.presentingViewController返回的视图控制器是指present出当前视图控制器(即:infoViewController)的视图控制器,当然是MainViewController。

备注7、8:可以正常工作,改代码可以实现返回到MainViewController的功能,备注7中的方法已经废弃,已被备注8中的方法代替;现在要考虑的问题是:为什么[self dismissViewControllerAnimated:YES completion:nil]与[self.presentingViewController dismissViewControllerAnimated:YES completion:nil]实现了同样的功能?

类UIViewController的dismissViewControllerAnimated方法有一段注释如下:

The presenting view controller is responsible for dismissing the view controller it presented. If you call this method on the presented view controller itself, it automatically forwards the message to the presenting view controller.

什么意思呢?MainViewController把InforViewController 展示出来了,同样也要负责把InforViewController退出,如果直接在InforViewController中发出(调用)dismissViewControllerAnimated消息,这个消息会自动转给MainViewController,所以,在InforViewController中执行[self dismissViewControllerAnimated:YES completion:nil]与[self.presentingViewController dismissViewControllerAnimated:YES completion:nil]两种调用,效果是一样的,调用前者就等同于调用后者。建议用后者,更容易理解。

10、编译、运行,效果如下

转载于:https://www.cnblogs.com/hereiam/p/3813555.html

更多相关:

  • app.js App({onLaunch: function() {if (!wx.cloud) {console.error('请使用 2.2.3 或以上的基础库以使用云能力')} else {wx.cloud.init({// env 参数说明:// env 参数决定接下来小程序发起的云开发调用(wx.cloud.xxx...

  • MVC、MVP、MVVM这些模式是为了解决开发过程中的实际问题而提出来的,目前作为主流的几种架构模式而被广泛使用。 一、MVC(Model-View-Controller) MVC是比较直观的架构模式,用户操作->View(负责接收用户的输入操作)->Controller(业务逻辑处理)->Model(数据持久化)->View(将结...

  • *自适应向布局约束的转化关闭*/ #define PREPCONSTRAINTS(VIEW) [VIEW setTranslatesAutoresizingMaskIntoConstraints:NO] #define CONSTRAIN(PARENT, VIEW, FORMAT) [PARENT addConstraints:[N...

  • 大多数Ios开发者都喜欢运用xib以及约束来布局,这样省去了大量初始化代码,但是xib的使用也是存在不少差异的:一.xib的几个重要属性xib的文件名File's ownerxib中的视图classxib文件中的视图Outlet指向二.Demo实现1.加载xib中File's owner为nil的视图blueView.pngViewC...

  • # 视图高级笔记:### `add_url_rule(rule,endpoint=None,view_func=None)`这个方法用来添加url与视图函数的映射。如果没有填写`endpoint`,那么默认会使用`view_func`的名字作为`endpoint`。以后在使用`url_for`的时候,就要看在映射的时候有没有传递`en...

  • UIView 1.为什么要UIView .可以用UIView作为容器,存放子视图 .管理事件UIEvent   2.ios坐标系 以左上角为坐标原点,向右边是x的正方向,向下是y的正向方 bounds: 相对于视图本身而言(0,0,w, h) frame:相对于父视图的坐标 center: 相对于父视图的中心点坐标   3.将一...

  • 最近项目中发现一怪问题,使用DB项目发布数据库时,总提示 “(110,1): SQL72014: .Net SqlClient Data Provider: Msg 1222, Level 16, State 56, Procedure sp_refreshsqlmodule_internal, Line 67 Lock reques...

  • 转载地址:http://www.2cto.com/database/201212/176775.html 一、视图的基本介绍  www.2cto.com   视图是虚拟的表。与包含数据的表不一样,视图只包含使用时动态检索数据的查询。 使用视图需要MySQL5及以后的版本支持。 下面是视图的一些常见应用: 重用SQL语句; 简化复杂的S...