Are there any shortcuts to (stringByAppendingString:) string concatenation in Objective-C, or shortcuts for working with NSString in general?
stringByAppendingString:
NSString
Was trying the following in the lldb pane
lldb
[NSString stringWithFormat:@"%@/%@/%@", three, two, one];
which errors.
instead use alloc and initWithFormat method:
initWithFormat
[[NSString alloc] initWithFormat:@"%@/%@/%@", @"three", @"two", @"one"];