Ich bin neu in iOS. Ich studiere derzeit iOS mit Objective-C und Swift.
Um eine Zeichenfolge in Objective-C anzuhängen, verwende ich folgenden Code:
NSString *string1 = @"This is";
NSString *string2 = @"Swift Language";
NSString *appendString=[NSString stringWithFormat:@"%@ %@",string1,string2];
NSLog(@"APPEND STRING:%@",appendString);
Jemand bitte führt mich.