Je suis un nouveau venu dans la programmation Swift et je crée une application simple de calculateur de pourboires dans Xcode 8.2. Mes calculs sont configurés dans les IBAction
ci-dessous. Mais lorsque je lance mon application et que je saisis un montant à calculer (par exemple, 23,45), il apparaît avec plus de 2 décimales. Comment puis-je le formater à .currency
dans ce cas?
@IBAction func calculateButtonTapped(_ sender: Any) {
var tipPercentage: Double {
if tipAmountSegmentedControl.selectedSegmentIndex == 0 {
return 0.05
} else if tipAmountSegmentedControl.selectedSegmentIndex == 1 {
return 0.10
} else {
return 0.2
}
}
let billAmount: Double? = Double(userInputTextField.text!)
if let billAmount = billAmount {
let tipAmount = billAmount * tipPercentage
let totalBillAmount = billAmount + tipAmount
tipAmountLabel.text = "Tip Amount: $\(tipAmount)"
totalBillAmountLabel.text = "Total Bill Amount: $\(totalBillAmount)"
}
}