I'm creating a small iPhone calculator and I have done the usual operations but the only problem that I have is that my digits are displayed with a decimal point and six zeros after it. So when I press the button with the tag 5 this is displayed on the display label
---------------
| 5.000000|
---------------
I only one to see number 5 without the zeros. Any suggestions?
This is the code that I have that display the digits pressed on the display label:
- (IBAction)digitAction:(id)sender {
currentNumber = currentNumber *10 + (double)[sender tag];
display.text = [NSString stringWithFormat:@"%2f",currentNumber];
}
I have tried the following methods to format the string but it doesn't seem to work:
Instead of: @"%2f" I have tried @"%f", @"%d" etc.
