Answers for "swift how to make a double format 2 decimal places 0.5 -> 0.50"

6

format decimal place swift

let tip: Double = 15.2847320
let tipText: String = String(format: "%.2f", tip)
// %.2f for two decimal places
Posted by: Guest on March-14-2020
1

Decimal to Double conversion in Swift

let someDouble = Double(truncating: someDecimal as NSNumber)
Posted by: Guest on March-25-2020

Code answers related to "swift how to make a double format 2 decimal places 0.5 -> 0.50"

Code answers related to "Swift"

Browse Popular Code Answers by Language