我将我的 swift 4.2 应用程序升级到 Swift 5,我得到了这个错误。有谁知道如何解决?
文件使用:GMStepper.swift
错误:无法将“String”类型的值转换为预期的参数类型“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)")
}