标签: ios button
有人知道如何为ContactAdd按钮类型中带圆圈的+符号提供自定义文本颜色吗?在我认为圈出的+是按钮的实际标题之前,我错了。
var addButton=UIButton.buttonWithType(UIButtonType.ContactAdd) as UIButton println("this is the current title \(addButton.currentTitle)") \\gives nil
答案 0 :(得分:2)
您可以使用tint color属性。像这样:
addButton.tintColor = UIColor.blueColor()