Hello,
What i mean is,
For Example:
Here is the output i want:
Alex
Hi Alex how are you?
What is the correct syntax and the easy way to do this?
Thanks.
What i mean is,
For Example:
Code:
NSString *s = @"Alex";
NSString *s2 = @"Hi [s] how are you?";
NSLog(s);
NSLog(s2);
Here is the output i want:
Alex
Hi Alex how are you?
What is the correct syntax and the easy way to do this?
Thanks.
Last edited by a moderator: