Appending String to NSMutableString | iOS Programmer Guide

Initialize the NSMutableString as below

NSMutableString *masterString = [[NSMutableString alloc]init];
Then, call appendString method in NSMutableString and pass the string you would like to append as given below

[masterString appendString:@"second part of the string"];