一般都是在应用启动时就会加载storyboard,但是对于我这新手来说,有的已经用代码实现了界面,只是最后一个页面用了storyboard,问题来了,我之前都是代码,如何在代码中加载运行这个storyboard页面。
2 回答
HUWWW
TA贡献1874条经验 获得超12个赞
UIViewController*con=[[UIStoryboardstoryboardWithName:@"MainStoryboard"bundle:nil]instantiateViewControllerWithIdentifier:@”yourIdentifier”];//根据标识符获得控制器,要先给storyboard设置identifier[self.navigationControllerpushViewController:conanimated:YES];//加载控制器}
添加回答
举报
0/150
提交
取消