gpt4 book ai didi

swift - 更改 WKInterfaceLabel 文本

转载 作者:行者123 更新时间:2023-11-28 07:48:55 26 4
gpt4 key购买 nike

我目前有:

@IBOutlet var label: WKInterfaceLabel!

 let myString = "Swift Attributed String"
let myAttribute = [ NSAttributedStringKey.foregroundColor: UIColor.blue ]
let myAttrString = NSAttributedString(string: myString, attributes: myAttribute)
label.setAttributedText(myAttrString)

目前此代码不会更改标签的文本。有什么明显的我想念的吗?感谢您的帮助!

最佳答案

您的代码运行良好,但仅适用于 textcolor您不需要使用属性属性,您可以直接使用 setTextColor() 属性。

label.setTextColor(UIColor.blue)
label.setText(myString)

可以引用WKInterfaceLabelsetTextColor

关于swift - 更改 WKInterfaceLabel 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50206887/

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