I'm new in programming and want to try some things. So I have two view controllers. The first one has a button, which brings me to the second view controller, when tapped. In the second view controller, I have a table view with a prototype cell. In my class tableViewCell I define this cell and there are also two functions for - button and a + button. So the problem is, the functions work and set the value in a label of the cell like a stepper. But when I go back to my first view controller and then again into the second view controller, the value of the label is again 1. So How can I save the tapped value for this label? You can see the code for my cell here:

import UIKit
import CoreData

protocol FridgeListTableViewCellDelegate: class {
    func cellDecreaseButtontapped(_ sender: FridgeListTableViewCell)
    func cellIncreasedButtontapped(_ sender: FridgeListTableViewCell)
}

class FridgeListTableViewCell: UITableViewCell {

    @IBOutlet weak var wareLabel: UILabel!
    @IBOutlet weak var quantityLabel: UILabel!
    @IBOutlet weak var decreaseButton: UIButton!
    @IBOutlet weak var increaseButton: UIButton!

     weak var delegate: FridgeListTableViewCellDelegate?


    @IBAction func decreaseTapped(_ sender: UIButton) {
        let counter = Int(quantityLabel.text!)
        let newCounter = counter! - 1
        let newCounterString = String(newCounter)
        quantityLabel.text = newCounterString

        delegate?.cellDecreaseButtontapped(self)
    }

    @IBAction func increaseTapped(_ sender: UIButton) {
        let counter = Int(quantityLabel.text!)
        let newCounter = counter! + 1
        let newCounterString = String(newCounter)
        quantityLabel.text = newCounterString

        delegate?.cellIncreasedButtontapped(self)
    }



    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }

}

and the part of my second view controller, where I call this functions:

 func cellDecreaseButtontapped(_ sender: FridgeListTableViewCell) {
    guard let tappedIndexPath = fridgeList.indexPath(for: sender) else { return }
    print("Decrease", sender, tappedIndexPath)
}
func cellIncreasedButtontapped(_ sender: FridgeListTableViewCell) {
    guard let tappedIndexPath = fridgeList.indexPath(for: sender) else { return }
    print("Increase", sender, tappedIndexPath)
}

Hope somebody can help.

0

There are 0 best solutions below