更改联系人在swift中添加按钮颜色

时间:2015-08-17 06:57:59

标签: ios button

有人知道如何为ContactAdd按钮类型中带圆圈的+符号提供自定义文本颜色吗?在我认为圈出的+是按钮的实际标题之前,我错了。

var addButton=UIButton.buttonWithType(UIButtonType.ContactAdd) as UIButton
println("this is the current title \(addButton.currentTitle)") \\gives nil

1 个答案:

答案 0 :(得分:2)

您可以使用tint color属性。像这样:

addButton.tintColor = UIColor.blueColor()