NSString provides a vast variety of methods for string manipulations. Amongst them are several ways for conatination.
You should get familiar with the factory method stringWithFormat. It is one of the most powerful and especially good at a bit more complex requirements.
In your case:
Label_1.text = [NSString stringWithFormat:@"Some string%@", _Label_2.text);
or
Label_1.text = [NSString stringWithFormat:@"%@g%@", @"Some string", _Label_2.text);
The format string corresponds to the usual standard c printf format string plus the %@ tag which is replaced by any objects description value. So you could have an NSNumber there or even an NSArray or so. However, the description of NSArray, NSDictionary, NSSet etc. may not really be useful for production but come quite handy for debugging. NSLog() uses the same format.