I have an unsinged int having value of -10, now I want to convert it into NSString.

In simply we do as, in objective-c, iphone programming

int x = 10;
NSString *str = [NSString stringWithFormat:@"%d",x];
NSLog(@"My String is %@",str);

I will show console output as 10

but if it is something like

unsigned int x = -10;
NSString *str = [NSString stringWithFormat:@"%d",x];
NSLog(@"My String is %@",str);

Then the output will be same, not the -10,

how can I do proper conversion ?

link|improve this question

73% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Use %u instead of %d. It is similar to C : Convert signed to unsigned.

link|improve this answer
feedback

Did you ever ask yourself what unsigned means?

It is always >= 0. -10 is not a valid value for an unsigned variable.

link|improve this answer
but Eiko, it is showing in NSLog, what is that? – Veer Jun 17 '11 at 9:22
@veer: may be that because of self conversion – rptwsthi Jun 17 '11 at 9:26
%d interprets the value as signed. Use %u for unsigned (which will give 4294967286 as this corresponds to the internal representation of the -10). Please also check out the link in @KennyTM's answer. – Eiko Jun 17 '11 at 9:27
then what is solution for my problem sir? – Veer Jun 17 '11 at 9:28
@Eiko, but now how can I show an unassigned value on label using NSString – Veer Jun 17 '11 at 9:29
show 5 more comments
feedback

An unsigned integer can't have a value of -10.

link|improve this answer
then how to save minus values? – Veer Jun 17 '11 at 9:26
By using a signed int (i.e. just a plain old int). – omz Jun 24 '11 at 11:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.