模糊地使用backgroundColor swift

时间:2015-10-27 13:57:03

标签: swift uibutton ambiguous

我只想在点击并获得API响应后,简单地更改UIButton的背景 所以我写了下面的代码。

@IBAction func followClick(sender: AnyObject)
{
    //calling SOAP API
    //Getting response
    sender.backgroundColor = UIColor(red: 146/255.0, green: 29/255.0, blue: 29/255.0, alpha: 1.0)
}

但是得到

的错误
  

模糊地使用backgroundColor

请帮助我完成这个简单的步骤。

1 个答案:

答案 0 :(得分:1)

有点愚蠢......
刚刚替换为以下

@IBAction func followClick(sender: UIButton)

连接IBAction时忘记将类从AnyObject更改为UIButton。