If you can add the end of the line, you can go to the beginning of the line.
Append
NSString* a = @"A";
NSString* b = @"B";
NSString* result = [a stringByAppendingString:b];
Prepare
NSString* a = @"A";
NSString* b = @"B";
NSString* result = [b stringByAppendingString:a];
source
share