How do I convert NSInteger to NSString datatype?

Viewed 158924

How does one convert NSInteger to the NSString datatype?

I tried the following, where month is an NSInteger:

  NSString *inStr = [NSString stringWithFormat:@"%d", [month intValue]];
9 Answers
Related