swift中UIWindow的使用
发布时间:2020-12-14 06:39:08 所属栏目:百科 来源:网络整理
导读:https://github.com/potato512/SYSwiftLearning UIWindow 继承自 UIView, 用来管理和协调各种视图。提供一个区域来显示视图 , 将事件 event 分发给视图。 每个 iOS 应用必须包含一个 window 用于展示 APP 的交互页面, 且一个 APP 通常只有一个 UIWindow, 包
https://github.com/potato512/SYSwiftLearning
UIWindow继承自UIView,用来管理和协调各种视图。提供一个区域来显示视图,将事件event分发给视图。 每个iOS应用必须包含一个window用于展示APP的交互页面, 且一个APP通常只有一个UIWindow,包含了APP的可视内容。 显示优先级,通常会有三个值,优先级顺序为: UIWindowLevelAlert > UIWindowLevelStatusBar > UIWindowLevelNormal 控制keyWindow的显示,隐藏方法 (1)显示:makeKeyAndVisible方法,及hiddin属性 (2)隐藏:resignKeyWindow方法,及hidden属性 效果图:
源码示例:
func alertClick() { // UIScreen.mainScreen().bounds if self.alertWindow == nil { self.alertWindow = UIWindow(frame: UIScreen.mainScreen().bounds) self.alertWindow.windowLevel = UIWindowLevelAlert self.alertWindow.backgroundColor = UIColor.yellowColor() self.alertWindow.becomeKeyWindow() let label = UILabel(frame: CGRectMake(10.0,10.0,(CGRectGetWidth(self.alertWindow.frame) - 10.0 * 2),180.0)) self.alertWindow.addSubview(label) label.backgroundColor = UIColor.orangeColor() label.numberOfLines = 0 label.font = UIFont.systemFontOfSize(13.0) label.text = "UIWindow继承自UIView,用来管理和协调各种视图。提供一个区域来显示视图,将事件event分发给视图。n每个iOS应用必须包含一个window用于展示APP的交互页面, 且一个APP通常只有一个UIWindow,包含了APP的可视内容。n显示优先级,通常会有三个值,优先级顺序为:UIWindowLevelAlert > UIWindowLevelStatusBar > UIWindowLevelNormal." let button = UIButton(frame: CGRectMake((CGRectGetWidth(self.alertWindow.frame) - 10.0 - 80.0),(CGRectGetMinX(label.frame) + CGRectGetHeight(label.frame) + 10.0),80.0,30.0)) self.alertWindow.addSubview(button) button.backgroundColor = UIColor.greenColor() button.setTitle("hidden",forState: .Normal) button.setTitleColor(UIColor.blackColor(),forState: .Normal) button.setTitleColor(UIColor.redColor(),forState: .Highlighted) button.addTarget(self,action: Selector("hiddenClick"),forControlEvents: .TouchUpInside) } self.alertWindow.makeKeyAndVisible() self.alertWindow.hidden = false } func hiddenClick() { if self.alertWindow != nil { self.alertWindow.resignKeyWindow() self.alertWindow.hidden = true } } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |