The table view and cells have been created and populated with a label and slider.I have an IBAction on the slider when the value is changed.
How do I get that value back into the label in the cell?
I have an IBOutlet linked in the table view.
@IBAction func slideChange(_ sender: UISlider) {
let currentValue = sender.value // gets slider's value
let row = sender.tag // gets slider's row in table
myTableView.cell.myLabel.text = sender.value // Here i need to show updated value
print("Slider in row \(row) has a value of \(currentValue)") // works
}