How to add an integer into String using objective c?
To place an integer into a string, you can do this:
int n = 123;
NSString *s = [NSString stringWithFormat:@"This is a %d test", n];
There are numerous other ways. But concatenating strings with integers by + operator is not one of them. :)