码迷,mamicode.com
首页 > 移动开发 > 详细

ios 调节器 modal 得知

时间:2015-10-17 12:05:45      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

代码中创建:

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状态




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

ios 调节器 modal 得知

标签:

原文地址:http://www.cnblogs.com/mengfanrong/p/4887119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!