如何在Swift 3中舍入double到decimal的值?

时间:2016-09-29 05:08:51

标签: swift swift3

我有以下方法可以正常使用Swift 2:

func roundToPlaces(_ places:Int) -> Double {
    let divisor = pow(10.0, Double(places))
    return round(self * divisor) / divisor
}

但它不适用于Swift 3.有人请告诉我它在Swift 3中的替换。

0 个答案:

没有答案