码迷,mamicode.com
首页 > 其他好文 > 详细

代码加载storyboard

时间:2015-01-30 19:19:25      阅读:489      评论:0      收藏:0      [点我收藏+]

标签:

自从使用xcode6后,有一些小细节需要注意一下,在加载storyboard的时候一定不要忘记勾选 entry point。特别是主框架是代码,然后个别控制器需要加载storyboard的时候

- (void)pop {
    //弹出请假的窗口
  UIViewController *rootVc = [UIApplication sharedApplication].keyWindow.rootViewController;
    UIStoryboard *storyboard=[UIStoryboard storyboardWithName:@"qingjia" bundle:nil];
    KltLeaveViewController *commm= [storyboard instantiateInitialViewController];
    [rootVc presentViewController:[[UINavigationController alloc]initWithRootViewController:commm] animated:YES completion:nil];
    NSLog(@"pop---");
}

 

代码加载storyboard

标签:

原文地址:http://www.cnblogs.com/jokervenus/p/4262956.html

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