Are there any shortcuts to (stringByAppendingString:) string concatenation in Objective-C, or shortcuts for working with NSString in general?
stringByAppendingString:
NSString
NSString *result=[NSString stringWithFormat:@"%@ %@", @"Hello", @"World"];