首页 > 学院 > 开发设计 > 正文

【读书笔记】UIWindow-WindowLevel

2019-11-14 18:37:47
字体:
来源:转载
供稿:网友

WindowLevel是UIWindow的一个属性。系统定义的一共有3种。

UIKIT_EXTERN const UIWindowLevel UIWindowLevelNormal;
UIKIT_EXTERN const UIWindowLevel UIWindowLevelAlert;
UIKIT_EXTERN const UIWindowLevel UIWindowLevelStatusBar;

 

代码:

 

复制代码
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.        NSLog(@"UIWindowLevelNormal=%f UIWindowLeveStatusBar=%f UIWindowLevelAlert=%f",UIWindowLevelNormal,UIWindowLevelStatusBar,UIWindowLevelAlert);         return YES;}
复制代码

 

输出结果:

 

2015-07-19 21:02:45.448 WindowLevelDemo[775:24283] UIWindowLevelNormal=0.000000 UIWindowLeveStatusBar=1000.000000 UIWindowLevelAlert=2000.000000

 

参考资料:《iOS开发进阶》-唐巧 

 

 
 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表