1

ユーザーが2列のテキストフィールドに入力した値を使用し、必要な操作を実行して目的の出力を生成し、結果をアラートメッセージとしてXCODEに表示したいですか?テキストフィールドを使用して計算を実行する方法はありますか?

答えを得た:

-(IBAction)buttonPressed1:(id)sender
{
    // You may also need to check if your string data is a valid number
    int result = [Number1.text intValue] + [Number2.text intValue];
    SumAnswer.text = [NSString stringWithFormat:@"%d", result];
}
4

1 に答える 1

1

上記のコードは正しいです。これにより、結果が3番目のテキストボックスに表示されます。結果を表示したい場合UIAlertView

UIAlertViewをお試しください

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Result !!" message:[NSString stringWithFormat:@"%d", result]; delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
    // optional - add more buttons:
    [alert addButtonWithTitle:@"Yes"];
    [alert show];

UIAlertViewDelegateそして、.hクラスを追加することを忘れないでください

于 2013-02-15T08:00:03.197 に答える