首页 > 代码库 > 代码加载storyboard
代码加载storyboard
自从使用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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。