gpt4 book ai didi

ios - UILabel 在动态创建的 UIView 上不可见

转载 作者:行者123 更新时间:2023-11-29 01:44:10 24 4
gpt4 key购买 nike

我正在尝试以编程方式创建自定义 View 以显示错误条件的错误消息。下面是 ViewController 的样子:

// init
var titleParagraphStyle = NSMutableParagraphStyle()
titleParagraphStyle.lineSpacing = 40.0
titleParagraphStyle.lineBreakMode = NSLineBreakMode.ByWordWrapping

let titleString = NSMutableAttributedString(
string: "Oops! Error.",
attributes: [ // Some attributes
]
)

var errorView = UIView()
errorView.frame = self.view.bounds
errorView.backgroundColor = UIColor.redColor()

var errorLabel = UILabel()
errorLabel.textAlignment = .Center
errorLabel.attributedText = titleString
errorLabel.lineBreakMode = .ByWordWrapping
errorLabel.backgroundColor = UIColor.blueColor()
errorLabel.textColor = UIColor.greenColor()

errorView.addSubview(errorLabel)
self.errorView = errorView

// usage
if(errorCondition) {
self.view = self.errorView
}

我只能看到一个红色矩形,这意味着只有 errorView 可见。我做错了什么?

最佳答案

我认为您的 UILabel 需要一个框架。

关于ios - UILabel 在动态创建的 UIView 上不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32104591/

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