最佳答案
我是 Swift 编程的新手,我已经在 Xcode 8.2中创建了一个简单的提示计算器应用程序,我在下面的 IBAction
中设置了我的计算。但是,当我真正运行我的应用程序并输入一个金额来计算(例如23.45) ,它会出现超过2个小数位。在这种情况下,如何将其格式化为 .currency
?
@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)"
}
}