1
我有一個tableview包含單元格左邊的按鈕。運行效果很好,當我選擇一個按鈕時,它會改變它的圖像背景。問題是,當我選擇一個按鈕ButtonOne selection,它選擇其他的按鈕,當我滾動tableview中下來,Other buttons selected我的代碼是這樣:Tableview單元格按鈕選擇錯誤
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = self.tableview.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! PlayerCell
cell.BtnAdd.tag = indexPath.row
cell.BtnAdd.addTarget(self, action: #selector(CreateTeamTwo.PlayerAdded(_:)), forControlEvents: .TouchUpInside)
return cell
}
func PlayerAdded(sender: UIButton){
// let buttonTag = sender.tag
sender.setImage(UIImage(named: "btn_buy_minus.png"), forState: UIControlState.Normal)
}
你能幫助我嗎?
謝謝!這工作!全國聯保:) –
您的歡迎:) –