I upgraded my swift 4.2 application to Swift 5 and I get this error. Does anyone know how to fix?
File using: GMStepper.swift
Error: Cannot convert value of type 'String' to expected argument type 'DefaultStringInterpolation'
if self.showIntegerIfDoubleIsInteger && floor(self.value) == self.value {
label.text = String(stringInterpolation: "\(Int(self.value))\(self.suffixString)")
} else {
label.text = String(stringInterpolation: "\(Int(self.value))\(self.suffixString)")
}