在iOS 13中,可以通过以下步骤将UIView对象添加到当前应用程序窗口:
guard let window = UIApplication.shared.keyWindow else {
return
}
let customView = UIView(frame: CGRect(x: 0, y: 0, width: 200, height: 200))
customView.backgroundColor = UIColor.red
window.addSubview(customView)
完整的代码示例:
guard let window = UIApplication.shared.keyWindow else {
return
}
let customView = UIView(frame: CGRect(x: 0, y: 0, width: 200, height: 200))
customView.backgroundColor = UIColor.red
window.addSubview(customView)
这样,UIView对象就会被添加到当前应用程序窗口中,并显示在屏幕上。这在需要在应用程序的任何地方显示自定义视图时非常有用,例如弹出框、悬浮按钮等。
腾讯云相关产品和产品介绍链接地址:
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云