How would I use a combination of text and variables in a NSString?
I know that in an NSLog, it looks like this:
int number = 5;
NSLog(@”My favorite number is %i”, number);
How would I go about doing something like that in an NSString or even a char variable?
That is fairly simple:
its basically the same as nslog.