I have a String object:
NSString* name = @"John Smith";
and another String object:
NSString* intro =@"Hello this is ";
I want to be able to change the name from the UI make it within the introduction, so I tried:
_introduction = (@"Hello this is, %@", _name);
However, only the name is getting printed when I do:
NSlog(@"%@",_introduction);
I want both sentences to be printed by printing the intro object.