gpt4 book ai didi

ios - 无法添加标签以查看

转载 作者:行者123 更新时间:2023-11-28 13:28:12 24 4
gpt4 key购买 nike

我正在尝试以编程方式向 View contactsView 添加标签,但由于某种原因,它没有被添加。这是我的代码,我没有收到任何错误,但什么也没有得到。

我已经尝试在 viewWillAppear 中调用 getContacts() 但仍然没有成功

class ModuleViewController: UIViewController {


@IBOutlet weak var contactsView: UIView!


override func viewDidLoad() {
super.viewDidLoad()

getContacts()
}


override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
}



fileprivate func getContacts() {
let label = UILabel(frame: CGRect(x: 0, y: 0, width: 200, height: 21))
label.center = CGPoint(x: 160, y: 285)
label.textAlignment = .center
label.textColor = .black
label.text = "Test"
self.contactsView.addSubview(label)
}
}

最佳答案

问题是这一行:

label.center = CGPoint(x: 160, y: 285)

它将标签移出您看不到的联系人 View 。

关于ios - 无法添加标签以查看,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57964931/

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