例如,考虑我有一个名为Button的按钮,其标题为“Hello”。如何将标题设置为红色,字体大小为35? 提前感谢您的所有答案!
答案 0 :(得分:3)
<强> SOLUTION:强>
button.attributedTitle = NSAttributedString(string: "Title", attributes: [ NSForegroundColorAttributeName : NSColor.redColor(), NSFontAttributeName: UIFont(name: "Chalkduster", size: 35.0)!])