您的位置:首页 > 移动开发 > IOS开发

ios 调节器 modal 得知

2015-10-17 11:03 399 查看
代码中创建:

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状态
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: