控制器常见的创建方式有以下几种
通过storyboard创建
直接创建
HMViewController *hm = [[HMViewController alloc] init];
指定xib文件来创建
HMViewController *hm = [[HMViewController alloc] initWithNibName:@”HMViewController" bundle:nil];
先加载storyboard文件(Test是storyboard的文件名)
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Test" bundle:nil];
接着初始化storyboard中的控制器
初始化“初始控制器”(箭头所指的控制器)
HMViewController *HM = [storyboard instantiateInitialViewController];
通过一个标识初始化对应的控制器
HMViewController *HM = [storyboard instantiateViewControllerWithIdentifier:@”HM"]; |
|