标签: 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中的替换。