How to connect string \"Hello\" and string \"World\" to \"HelloWorld\"? Looks like \"+\" doesn\'t work.
How about:
NSString *hello = @"Hello"; NSString *world = @"World"; NSString *helloWorld = [hello stringByAppendingString:world];