I am making an iOS calculator app in which the scientific notion is enabled by using
Label.text = [NSString stringWithFormat:@"%g",savedValue];
Its format is e.g. 1.09101e+120. Since I have enough display space I would like to make it more logical and display it as 1.09101x10120.
How can this be achieved?