swift 中的加号或减号按钮值未更新

plus or minus button values is not updated in swift

我正在研究购物车视图控制器,我尝试了一些代码,如下图所示。

值更新表视图中的每一行,如果我点击产品 1 plusbutton 计数增加显示 1 。当我点击 product2 时 plusbutton 值显示 2.count 是 increasing.minus 每次减号按钮也工作相同就这样。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
         let cell = tableView.dequeueReusableCell(withIdentifier: "CustomTableViewCell") as! CustomTableViewCell
 cell.minusButton.tag = indexPath.row
        cell.plusbutton.tag = indexPath.row

        cell.minusButton.addTarget(self, action: #selector(minusbuttonClick), for: .touchUpInside)
        cell.plusbutton.addTarget(self, action: #selector(plusButtonClick), for: .touchUpInside)
        return cell
    }

    @objc func minusbuttonClick(sender : UIButton)
        {
            let cell = Tableview.cellForRow(at: NSIndexPath(row: sender.tag, section: 0) as IndexPath) as! CustomTableViewCell
            if(count > 0){
                count -= 1
            }
            let myString = String(count)
            cell.countLabel.text = myString
            if count == 0{
                 cell.countLabel.text = ""
            }
            self.Tableview.reloadData()

        }

        @objc func plusButtonClick(sender : UIButton)
        {
            let cell = Tableview.cellForRow(at: NSIndexPath(row: sender.tag, section: 0) as IndexPath) as! CustomTableViewCell
             count += 1
            let myString = String(count)
            cell.countLabel.text = myString
            self.Tableview.reloadData()
        }

我必须显示当我点击产品1时值应该是1,如果我点击产品2值是1 minus 也像那样减少

首先要做的是创建一个结构来保存您的数据

struct ProductData {
    var count : Int
    var name : String
}

您可以在 ViewController

中使用它
var productData : [ProductData] = []   

当然,您需要添加一些数据 - 这是一个简单的入门设置

override func viewDidLoad() {
    super.viewDidLoad()

    // set up some data.
    productData.append(ProductData(count: 0, name: "product 1"))
    productData.append(ProductData(count: 0, name: "product 2"))
    productData.append(ProductData(count: 0, name: "product 3"))
    productData.append(ProductData(count: 0, name: "product 4"))
}

使用前面描述的委托模型更新您的自定义table视图单元格

protocol TableViewCellCustomDelegate: class {
    func buttonTapped(index : Int, delta : Int)
}

class TableViewCellCustom: UITableViewCell {

    weak var delegate: TableViewCellCustomDelegate?

    @IBOutlet weak var minusButton: UIButton!
    @IBOutlet weak var plusButton: UIButton!
    @IBOutlet weak var countLabel: UILabel!
    @IBOutlet weak var productLabel: UILabel!

    override func prepareForReuse() {
        super.prepareForReuse()
        self.delegate = nil
    }

    @IBAction func minusButtonClick(_ sender: UIButton) {
        delegate?.buttonTapped(index: sender.tag, delta : -1)
    }

    @IBAction func plusButtonClick(_ sender: UIButton) {
        delegate?.buttonTapped(index: sender.tag,delta : +1)
    }
}

更新视图控制器中的委托方法。我在这里用单一的方法来添加或删除,但如果你还想做其他事情,你可以把它分开。

extension ViewController: TableViewCellCustomDelegate {
    func buttonTapped(index: Int, delta : Int)
    {
        productData[index].count += delta
        if productData[index].count < 0
        {
            productData[index].count = 0
        }

        tableView.reloadRows(at: [IndexPath(row: index, section: 0)], with: .automatic)
    }
}

并更新您的 cellForRowAt 定义

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "CustomTableViewCell", for: indexPath) as! TableViewCellCustom
    cell.countLabel.text = "\(productData[indexPath.row].count)"
    cell.productLabel.text = productData[indexPath.row].name

    cell.minusButton.tag = indexPath.row
    cell.plusButton.tag = indexPath.row

    cell.delegate = self

    return cell
}