gpt4 book ai didi

swift - 窗口无法快速添加 subview

转载 作者:搜寻专家 更新时间:2023-11-01 06:46:42 26 4
gpt4 key购买 nike

在函数 Appdelegate - didFinishLaunchingWithOptions 中实现:

var testView : UIView = UIView(frame: CGRectMake(100, 100, 100, 100))
testView.backgroundColor = UIColor.blueColor()
self.window?.addSubview(testView)
self.window?.bringSubviewToFront(testView)
self.window?.makeKeyAndVisible()

但不显示testView。

最佳答案

您需要做的就是为您的窗口添加框架。

您的代码将是:

window = UIWindow(frame: UIScreen.mainScreen().bounds)

var testView : UIView = UIView(frame: CGRectMake(0 , 0, 100, 100))
testView.backgroundColor = UIColor.blueColor()
self.window?.addSubview(testView)
self.window?.bringSubviewToFront(testView)
self.window?.makeKeyAndVisible()

关于swift - 窗口无法快速添加 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29843545/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com