博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios 调节器 modal 得知
阅读量:6215 次
发布时间:2019-06-21

本文共 1294 字,大约阅读时间需要 4 分钟。

代码中创建:

1、appdelegate 该contoller放置controller下一个

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];        self.window.rootViewController = [[MJOneViewController alloc] init];        [self.window makeKeyAndVisible];    return YES;}
2、oneViewController跳转的action

拿到要跳转的控制器的,然后通过当前的controller 来 调用 presentViewController

- (IBAction)jump {    // 展示MJTwoViewController    MJTwoViewController *two = [[MJTwoViewController alloc] init];        UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:two];        [self presentViewController:nav animated:YES completion:^{        NSLog(@"展示MJTwoViewController完成.......");    }];}
3、twoController 返回之前的controller

调用 dismissViewController方法

- (IBAction)cancel {//    NSLog(@"%@", self.view.window.rootViewController);//    NSLog(@"%@", self.view.window.subviews);    [self dismissViewControllerAnimated:YES completion:^{        NSLog(@"关闭MJTwoViewController....");    }];//    [self.navigationController dismissViewControllerAnimated:YES completion:^{//        NSLog(@"关闭MJTwoViewController....");//    }];}

在storyBoard创建modal控制器也非常方便。直接ctrl  右键点击 选举moadal状态

版权声明:本文博主原创文章,博客,未经同意不得转载。

你可能感兴趣的文章
创建 Web 前端开发环境
查看>>
[转]NopCommerce MVC 插件机制分析
查看>>
【转】linux 中fork()函数详解
查看>>
Qt 4.8.5 jsoncpp lib
查看>>
【转】质量管理的思考
查看>>
BZOJ1077 : [SCOI2008]天平
查看>>
error MIDL2311 : statements outside library block are illegal in mktyplib compatability mode
查看>>
【转】spin_lock & mutex_lock的区别? .
查看>>
Kubernetes集群搭建过程中遇到的问题
查看>>
java通过文件头来判断文件类型
查看>>
Servlet作业1-实现注册登录
查看>>
uip UDPclient模式通信移植,p本地ort可以是无规
查看>>
mv命令
查看>>
C#中的逆变和协变
查看>>
android升级软件版本号,您安装后的新版本号,成功安装画面没有出现,或直接回到桌面...
查看>>
Nginx正确记录post日志的方法
查看>>
C# 模拟键盘操作--SendKey(),SendKeys()
查看>>
组队赛第二场:字符串哈希+DP
查看>>
./wls1036_linux32.bin: /lib/ld-linux.so.2: bad ELF interpreter
查看>>
保护索引要注意的问题
查看>>