2013-02-14 3 views
1

필드에 입력 한 값을 두 개의 열로 사용자가 사용하고 원하는 출력을 생성하고 결과를 XCODE의 경고 메시지로 표시하고 싶습니다. 텍스트 필드를 사용하여 계산을 수행 할 수있는 방법이 있습니까? Xcode에서 텍스트 필드를 사용하여 수학 연산을 수행합니까?

는 ANS를 가지고 :

-(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]; 
} 

답변

1

이 위의 코드가 정확한지. 그러면 세 번째 텍스트 상자에 결과가 표시됩니다. 당신은 (sumAnswer.text를) 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]; 

을 시도하고 .H 클래스

+0

하지만 어떻게 텍스트 값을 표시하는 방법에 UIAlertViewDelegate를 추가하는 것을 잊지 마세요 UIAlertView

의 결과를 보여주고 싶은 경우 경고 상자에? – Siva

+0

해당 경고에 텍스트 필드를 표시 할 필요가 없습니다. 해당 경고에 결과를 직접 표시 할 수 있습니다. –

+0

경고 상자에 텍스트를 표시하는 방법은 무엇입니까? – Siva