我在版本8.2.1(8C1002)上有问题
我在这里有错误。 statusPrefix = formatter.string(来自:(numParticles.rawValue * 4))! +“粒子”
答案 0 :(得分:1)
参数from
需要类型为NSNumber
的值。你必须将乘法的结果转换成一个:
var number = NSNumber(value: numParticles.rawValue * 4)
statusPrefix = NumberFormatter.localizedString(from: number, number: NumberFormatter.Style.decimal)