I am new to iOS. I am currently studying iOS using Objective-C and Swift.
To append a string in Objective-C I am using following code:
NSString *str
You can simply append string like:
var worldArg = "world is good" worldArg += " to live";