swift - 如何在 Swift 中为状态设置属性标题颜色

标签 swift uibutton

我可以为 UIControlState 设置 attributedTitle,但是如何为 UIControlState 设置属性标题的颜色?

最佳答案

// create the button
let button = UIButton(frame: CGRect(x: 0, y: 0, width: 100, height: 50))
button.backgroundColor = UIColor.yellowColor()

// set the attributed title for different states

// .Selected
let mySelectedAttributedTitle = NSAttributedString(string: "Click Here",
    attributes: [NSForegroundColorAttributeName : UIColor.greenColor()])
button.setAttributedTitle(mySelectedAttributedTitle, forState: .Selected)

// .Normal
let myNormalAttributedTitle = NSAttributedString(string: "Click Here",
    attributes: [NSForegroundColorAttributeName : UIColor.blueColor()])
button.setAttributedTitle(myNormalAttributedTitle, forState: .Normal)

关于swift - 如何在 Swift 中为状态设置属性标题颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27624890/

相关文章:

ios - 对 didselectrowatindexpath 的按钮操作

ios - 无法将 UIButton 添加到 UIScrollView

ios - 如何在 Realm Swift 中将子类添加到 List<superclass>

ios - 如何使用 IQKeyboardManager 跳过隐藏的 UITextField?

ios - 如何使用 switch 语句来查找是否按下了 UIButton?

ios - 按钮操作不适用于 View 上的按钮

ios - 创建自定义 UITableView 索引 iOS

swift - 按下 tableviewCell 中的按钮并执行另一个 Controller

ios - 如何将pod添加到本地pod项目

ios - 未执行 Segue