我在tableview单元格上有一个按钮。 当它被按下时,此刻我想要的只是添加一个不同的图像。 当它已经在函数中已被按下时,因此分配控件事件必定是错误的。 不起作用:
@IBAction func HeartPressed(sender: AnyObject) {
var heartImage : UIImage = UIImage(named: "HeartPink.png")!
sender.setImage(heartImage, forState: UIControlState.Selected)
}
知道如何在tableviewcell中的按钮上设置图像吗?
答案 0 :(得分:0)
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
在此函数中设置所有按钮标记..
button.tag = indexPath.row
再试一次..