gpt4 book ai didi

ios - 在其他 View 前面添加来自 xib 的 View

转载 作者:行者123 更新时间:2023-11-30 13:19:17 25 4
gpt4 key购买 nike

我正在尝试在其他 View 前面添加来自 xib 的自定义 View 。但是,由于某种原因,当屏幕上有 UITableView 时,它永远不会被放置为前 View 。这是我的代码:

noInternetView = NSBundle.mainBundle().loadNibNamed("NoInternetView", owner: self, options: nil)[0] as! NoInternetView
noInternetView.translatesAutoresizingMaskIntoConstraints = false
noInternetView.delegate = self

self.view.addSubview(noInternetView)
self.view.addConstraint(NSLayoutConstraint(item: noInternetView, attribute: .CenterX, relatedBy: .Equal, toItem: self.view, attribute: .CenterX, multiplier: 1, constant: 0))
self.view.addConstraint(NSLayoutConstraint(item: noInternetView, attribute: .CenterY, relatedBy: .Equal, toItem: self.view, attribute: .CenterY, multiplier: 1, constant: 0))

我将其放在 viewDidLoad() 代码的底部。为什么会这样?

最佳答案

noInternetView.hidden = true

您的 View 已隐藏,请使其可见

noInternetView.hidden = false

关于ios - 在其他 View 前面添加来自 xib 的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37920877/

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