I created an NSMutableString
pointer variable and appended some text using the below code in the implementation file.
NSMutableString *displayString;
[displayString appendString: [NSString stringWithFormat:@"%i", digit]];
However, I would like to clear the displayString
contents and would like append new text.
Is there a way to do that?