私はチップ計算機を作っていますが、これは私が現在持っているコードです:(以下)。[見栄えを良くするために]、ユーザーが (15) を入れて、バックグラウンドで .15 と言うコードを作成する方法はありますか? ありがとう
- (IBAction)calcTapped:(id)sender {
NSString *billAmountString = [billAmountTextField text];
float billAmountFloat = [billAmountString floatValue];
NSString *tipPercentString = [tipPercentTextField text];
float tipPercentFloat = [tipPercentString floatValue];
float tipAmount = billAmountFloat * tipPercentFloat;
NSString *result = [NSString stringWithFormat:@"Tip: %0.2f",
tipAmount];
[resultLabel setText:result];
}