I want to have my stepper be used to add minutes to a timer. The stepper outputs + or - 1 by default, i am then using *60 to make it a minute, but this makes my timer display the total number of seconds in my timer rather than minutes. e.g. pressing it twice reads 120 in the time rather than 02:00, How would I convert this?
@IBAction func restStepperValueChanged(_ sender: UIStepper) {
numberOfRestLabel.text = Int(sender.value).description
restCount = Int(sender.value)*60
restRemainingCountdownLabel.text = String(restCount)
}