I'm making a calculator and the results that I'll get will be either very small or very big . So how can I change unites for a results which is where Vout is defined as a float.
Vout=1500;
self.myOutputValue.text = [NSString stringWithFormat:@"%.2f V",Vout];
this will print 1500.00 Volts
what should I do to get it to print 1.5 KV
self.myOutputValue.text = [NSString stringWithFormat:@"%( ???? ) KV",Vout];