我想在每个TableViewCell
中单击按钮时更改标签文本我的意思是有2个( - ,+)按钮和1个标签,当我点击按钮时,标签会增加或减少。
我不知道 怎么做?
答案 0 :(得分:0)
您所要做的就是为按钮添加动作并完成工作。
@IBAction func increase() {
quantityLabel.text = "\(quantity)" // increase the quantity number and set it
}
顺便说一句。在获得任何帮助之前,您应该考虑发布您的代码。
答案 1 :(得分:0)
您需要维护quantityArray
来存储每个索引的当前数量
var quantityArray:[Int] = [] //initialize quantity array
然后将初始数量值添加到quantityArray
例如:如果您的列表数组计数10和所有项目的初始数量将是一个意味着
将初始值添加到数组
for i in 0 ..< 10 {
quantityArray.append(1)
}
然后在tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath)
从quantityArray分配数量值
cell.qtyLbl.text = "\(quantityArray[indexPath.row])"
cell.incrementBtn.tag = indexPath.row
cell.incrementBtn.addTarget(self, action: #selector(self.incrementBtnClicked(_:)), for: .touchUpInside)
cell.decrementBtn.tag = indexPath.row
cell.decrementBtn.addTarget(self, action: #selector(self.decrementBtnClicked(_:)), for: .touchUpInside)
将以下功能添加到viewcontroller
func incrementBtnClicked(_ sender:UIButton){
let increasedQty = quantityArray[sender.tag]+1
self.quantityArray.replaceSubrange(sender.tag, with: increasedQty)
self.tableView.reloadData
}
func decrementBtnClicked(_ sender:UIButton){
let decreasedQty = quantityArray[sender.tag]-1
self.quantityArray.replaceSubrange(sender.tag, with: decreasedQty)
self.tableView.reloadData
}
如果你在滚动表视图之后使用这样的话,那么单元格中的数量也会从数量数组中填充
希望这会对你有所帮助