按钮图像加载白色?

时间:2016-02-28 10:35:43

标签: ios swift uiview uibutton

我将按钮图像设置为正常状态,加载了一些图像,其他图像显示为白色。

我需要帮助如何识别问题?

我使用下面的代码设置图像

button.setImage(UIImage(named: "icon"), forState: .Normal)

enter image description here

1 个答案:

答案 0 :(得分:3)

只需更改

button.setImage(UIImage(named: "icon"), forState: .Normal)

到这个

button .setBackgroundImage(image, forState: UIControlState.Normal)