【iOS基础控件

A.控制器的创建
控制器常见的创建方式有以下几种
通过storyboard创建

直接创建
1 ViewController *vc = [[ViewController alloc] init];
     xib设置了class后,当xib的文件名跟controller类名一样的时候,用这个方法默认就会加载xib中的controller
 
指定xib文件来创建
1 ViewController *vc = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
 
1.从storyboard中创建
(1)创建一个Empty Application (不带storyboard)
Image(193)
 
(2)创建window并加到screen上
复制代码
1 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
2     // 手动添加window到screen
3     self.window = [[UIWindow alloc] init];
4     self.window.frame = [[UIScreen mainScreen] bounds];
5     self.window.backgroundColor = [UIColor grayColor];
6     [self.window makeKeyAndVisible];
7     return YES;
8 }
复制代码
 
(3)创建一个storyboard,拖入一个controller
Image(194)
 
Image(195)
 
 
 
 
(4)取出storyboard(其实就是相当于xib)
1     // 2.取得stroyboard
2     UIStoryboard *sb = [UIStoryboard storyboardWithName:@"mysb" bundle:nil];
 
(5)设置storyboard上controller为rootViewController
 
 
有两种方式取得storyboard上的controller
a.直接使用入口controller,这个view的背景色是橄榄绿
Image(196)
 
设置storyboard中的ViewController的class为自定义的controller
6A478DD1-106A-4AF5-8BBF-2B3E85AAA454
 
1     // 3.1直接使用InitialViewController
2     self.window.rootViewController = [sb instantiateInitialViewController];
 
Image(197)
 
b.使用ID
设置ViewController的class
DFF26141-20C2-4CBB-B113-C46B912EDE58
 
 
再拖入一个ViewController,设置view的背景色是黄色,设置ID是”vc2"
Image(198)
 
1     // 4.使用ID取得controller, 设置rootViewController
2     self.window.rootViewController = [sb instantiateViewControllerWithIdentifier:@"vc2"];
 
Image(199)
 
完成的加载过程:
复制代码
 1 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
 2     // 1.手动添加window到screen
 3     self.window = [[UIWindow alloc] init];
 4     self.window.frame = [[UIScreen mainScreen] bounds];
 5     self.window.backgroundColor = [UIColor grayColor];
 6     [self.window makeKeyAndVisible];
 7    
 8     // 2.取得stroyboard
 9     UIStoryboard *sb = [UIStoryboard storyboardWithName:@"mysb" bundle:nil];
10    
11     // 3.取出storyboar中的controller
12     // 3.1直接使用InitialViewController
13     ViewController *controller = [sb instantiateInitialViewController];
14    
15     // 3.2使用ID
16     ViewController2 *controller2 = [sb instantiateViewControllerWithIdentifier:@"vc2"];
17    
18     // 4.设置rootViewController
19     self.window.rootViewController = controller2;
20    
21     return YES;
22 }
复制代码
 
总结:
1.创建Single View Application的时候,项目会自带一个storyboard,其实就是做了上面的事情
设置了Main storyboard 的文件,就会自动加载storyboard
Image(200)
 
2.不同的controller类负责不同的界面的操作
66169713-9BE0-4E3A-A62B-DA2C67BDDA8F
 
2.直接创建
(不详述)
 
3.指定xib文件创建
在之前没有storyboard的时候使用这种方法
(1)创建一个controller
Image(201)
 
(2)创建一个xib
Image(202)
 
(3)在xib拖入两个view,设置一些特征标识,方便对比
Image(203)
 
(4)设置其中一个view为控制器的view
a.更改 File’s Owner 的class为自定义的controller
Image(204)
 
b.设置controller的view
Image(205)
 
(5)从xib加载controller,并把view显示到window上
复制代码
 1 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
 2     // 1.手动添加window到screen
 3     self.window = [[UIWindow alloc] init];
 4     self.window.frame = [[UIScreen mainScreen] bounds];
 5     self.window.backgroundColor = [UIColor grayColor];
 6     [self.window makeKeyAndVisible];
 7  
 8     // 从xib加载控制器, 设置rootViewController
 9     self.window.rootViewController = [[XibViewController alloc] initWithNibName:@"myx" bundle:nil];
10     
11     return YES;
12 }
复制代码
 
Image(206)
 
总结:
1.storyboard:(这里使用ViewController2为rootViewController)
Image(207)
 
xib:(使用view1作为显示的view)
Image(208)
 
 
B.创建控制器的view
控制器的view创建有多种方式,(按照优先级进行创建,仅使用最优先的方式)
  • loadView代码(controller实现loadView方法)
  • storyboard描述
  • xib
 
Image
 
 

最新版的官方文档:

Image(214)

 
1.通过loadView
(1)创建一个controller、storyboard、xib
Image(210)
 
(2)配置好storyboard和xib的class为自定义的controller
(3)给storyboard和xib的view加上明显的标志
Image(211)
 
Image(212)
 
(4)在controller类中实现loadView(当controller的view是空的时候,就会调用loadView
复制代码
 1 // 加载view,这是延迟加载,当需要使用view而view是空的时候调用
 2 - (void)loadView {
 3     NSLog(@"loadView...");
 4     self.view = [[UIView alloc] init];
 5     self.view.frame = [[UIScreen mainScreen] bounds];
 6     UILabel *label = [[UILabel alloc] init];
 7     label.frame = CGRectMake(40, 40, 100, 100);
 8     label.text = @"loadView";
 9     [self.view addSubview:label];
10 }
复制代码
 
(5)在delegate中配置controller到window上
a.配置storyboard的controller为rootViewController
复制代码
 1 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
 2     // 配置window
 3     self.window = [[UIWindow alloc] init];
 4     self.window.frame = [[UIScreen mainScreen] bounds];
 5     self.window.backgroundColor = [UIColor grayColor];
 6    
 7     // 配置storyboard中的controller为rootViewController
 8     self.window.rootViewController = [[UIStoryboard storyboardWithName:@"test" bundle:nil] instantiateInitialViewController];
 9   
10      // 配置xib中的controller为rootViewController,主要要使用带有loadView的controller
11 //    self.window.rootViewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
12    
13     // 显示window
14     [self.window makeKeyAndVisible];
15     return YES;
16 }
17  
复制代码
会发现没有起作用
Image(213)
 
b.同样,使用xib中的controller为rootViewController,只要loadView存在,也不会起作用
1      // 配置xib中的controller为rootViewController,主要要使用带有loadView的controller
2     self.window.rootViewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
 
总结:
在配置rootViewController的时候,如果配置的controller中实现了loadView方法,就会覆盖storyboard或xib中的view
原文地址:https://www.cnblogs.com/kengsir/p/4281842.html