1、UIWindow是一种特殊的UIView,一般在一个程序中只会有一个UIWindow,但能够手动建立多个UIWindow,同时加到程序里面。UIWindow在程序中主要起到三个做用:app
一、做为容器,包含app所要显示的全部视图测试
二、传递触摸消息到程序中view和其余对象spa
三、与UIViewController协同工做,方便完成设备方向旋转的支持code
2、一般咱们能够采起两种方法将view添加到UIWindow中:orm
一、addSubview对象
直接将view经过addSubview方式添加到window中,程序负责维护view的生命周期以及刷新,可是并不会为去理会view对应 的ViewController,所以采用这种方法将view添加到window之后,咱们还要保持view对应的ViewController的有效 性,不能过早释放。blog
二、rootViewController排序
rootViewController时UIWindow的一个遍历方法,经过设置该属性为要添加view对应的 ViewController,UIWindow将会自动将其view添加到当前window中,同时负责ViewController和view的生命 周期的维护,防止其过早释放生命周期
3、WindowLevelci
UIWindow在显示的时候会根据UIWindowLevel进行排序的,即Level高的将排在全部Level比他低的层级的前面。下面咱们来看UIWindowLevel的定义:
const UIWindowLevel UIWindowLevelNormal;
const UIWindowLevel UIWindowLevelAlert;
const UIWindowLevel UIWindowLevelStatusBar;
typedef CGFloat UIWindowLevel;
IOS系统中定义了三个window层级,其中每个层级又能够分好多子层级(从UIWindow的头文件中能够看到成员变量CGFloat _windowSublevel;),不过系统并无把则个属性开出来。UIWindow的默认级别是UIWindowLevelNormal,咱们打印输出这三个level的值分别以下:
2012-03-27 22:46:08.752 UIViewSample[395:f803] Normal window level: 0.000000
2012-03-27 22:46:08.754 UIViewSample[395:f803] Alert window level: 2000.000000
2012-03-27 22:46:08.755 UIViewSample[395:f803] Status window level: 1000.000000
|
这样印证了他们级别的高低顺序从小到大为Normal < StatusBar < Alert,下面请看小的测试代码:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; self.window.backgroundColor = [UIColor yellowColor]; [self.window makeKeyAndVisible]; UIWindow *normalWindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; normalWindow.backgroundColor = [UIColor blueColor]; normalWindow.windowLevel = UIWindowLevelNormal; [normalWindow makeKeyAndVisible]; CGRect windowRect = CGRectMake(50, 50, [[UIScreen mainScreen] bounds].size.width - 100, [[UIScreen mainScreen] bounds].size.height - 100); UIWindow *alertLevelWindow = [[UIWindow alloc] initWithFrame:windowRect]; alertLevelWindow.windowLevel = UIWindowLevelAlert; alertLevelWindow.backgroundColor = [UIColor redColor]; [alertLevelWindow makeKeyAndVisible]; UIWindow *statusLevelWindow = [[UIWindow alloc] initWithFrame:CGRectMake(0, 50, 320, 20)]; statusLevelWindow.windowLevel = UIWindowLevelStatusBar; statusLevelWindow.backgroundColor = [UIColor blackColor]; [statusLevelWindow makeKeyAndVisible]; NSLog(@"Normal window level: %f", UIWindowLevelNormal); NSLog(@"Alert window level: %f", UIWindowLevelAlert); NSLog(@"Status window level: %f", UIWindowLevelStatusBar); return YES; }
运行结果以下图:
咱们能够注意到两点:
1)咱们生成的normalWindow虽然是在第一个默认的window以后调用makeKeyAndVisible,可是仍然没有显示出来。这说明当Level层级相同的时候,只有第一个设置为KeyWindow的显示出来,后面同级的再设置KeyWindow也不会显示。
2)statusLevelWindow在alertLevelWindow以后调用makeKeyAndVisible,仍然只是显示在alertLevelWindow的下方。这说明UIWindow在显示的时候是无论KeyWindow是谁,都是Level优先的,即Level最高的始终显示在最前面。