How to combine NSString objects

- by

Say you had two NSString objects, firstString and secondString and you’d like to combine them into a new string called comboString. You can use the convenience method stringWithFormat for this:

NSString *comboString = [[NSString alloc]initWithFormat:@"First %@ and second %@", firstString, secondString];

Any variable is passed at the end of the string, replacing each %@ symbol.



If you enjoy my content, please consider supporting me on Ko-fi. In return you can browse this whole site without any pesky ads! More details here.

Leave a Comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.