Objective-C 文字列列連結

Objective-Cで文字列連結


Javaではこうで、

String s1 = "Hello";

String s2 = "World";


String str = s1 + " " + s2;


Objective-Cではこう。

NSString *s1 = @"Hello";

NSString *s2 = @"World";


NSString *str = [NSString stringWithFormat:@"%@ %@",s1,s2];

  

目 次