UIWindow

2016-09-01  本文已影响0人  彼岸的黑色曼陀罗

UIWindow基本使用

//创建一个Window
self.window = [UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
self.window.backgroundColor = [UIColor orangeColor];
//设置窗口的根控制器
UIViewController * vc= [UIViewController alloc]init];
vc.backgroundColor = [UIColor blueColor];
window.rootViewController = vc;
//显示窗口
[window makeKeyAndVisible];

makeKeyAndVisible内部的实现?

键盘和状态栏都是UIWindow

通过storyboard加载控制器(掌握)

上一篇 下一篇

猜你喜欢

热点阅读