gpt4 book ai didi

swift - 子类化的 UILabel 不显示

转载 作者:行者123 更新时间:2023-11-28 07:27:51 25 4
gpt4 key购买 nike

我正在尝试创建自定义 UILabel,我的第一个子类按预期工作,我进行了一些字体属性修改和更改。

@IBDesignable class LunaLbl: UILabel {
@IBInspectable dynamic open var fontSize: CGFloat = 25 {
didSet {
updateFont()
}
}
@IBInspectable dynamic open var fontName: String = Fonts.proDisplayBold.rawValue {
didSet {
updateFont()
}
}
@IBInspectable dynamic open var fontColor: UIColor = .lunaBlack {
didSet {
updateFont()
}
}
@IBInspectable dynamic open var lineSpacing: CGFloat = 1.2 {
didSet {
updateFont()
}
}
override open func draw(_ rect: CGRect) {
super.draw(rect)
updateFont()
self.adjustsFontSizeToFitWidth = false
}

func updateFont() {
let textContent = self.text
let textString = NSMutableAttributedString(string: textContent!, attributes: [
NSAttributedString.Key.font: UIFont(name: fontName, size: fontSize)!])
let textRange = NSRange(location: 0, length: textString.length)
let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.lineSpacing = lineSpacing
textString.addAttribute(NSAttributedString.Key.paragraphStyle, value: paragraphStyle, range: textRange)
textString.addAttribute(NSAttributedString.Key.foregroundColor, value: fontColor, range: textRange)
self.attributedText = textString
}
}

现在我的第二个子类继承 self 的第一个子类,但我的屏幕上没有显示任何内容。

@IBDesignable class LunaTitleLbl : LunaLbl {
override open func draw(_ rect: CGRect) {
super.draw(rect)
fontSize = 25.0
fontName = Fonts.proDisplayBold.rawValue
fontColor = .lunaBlack
updateFont()
self.adjustsFontSizeToFitWidth = false
}
}

我做同样的事情,我直接从 Storyboard 中继承了我的新子类,但是当我使用 View 层次结构调试它时没有显示任何内容,我的标签已创建并且它采用了我想要的值,但未显示文本。

这就是我如何继承我的子类 enter image description here

最佳答案

当我更改属性名称 lineSpacing 并且一切都按预期工作时,我认为问题在于我使用了相同的标签属性名称。

关于swift - 子类化的 UILabel 不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55874729/

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