在Objective-C中有没有(stringByAppendingString:)字符串连接的快捷方式,或者一般使用NSString的快捷方式?
例如,我想做:
NSString *myString = @"This";
NSString *test = [myString stringByAppendingString:@" is just a test"];
更像是:
string myString = "This";
string test = myString + " is just a test";
当我测试时,这两种格式都可以在XCode7中工作:
NSString *sTest1 = {@"This" " and that" " and one more"};
NSString *sTest2 = {
@"This"
" and that"
" and one more"
};
NSLog(@"\n%@\n\n%@",sTest1,sTest2);
出于某种原因,您只需要在混合的第一个字符串上使用@操作符。
但是,它不能用于变量插入。为此,您可以使用这个极其简单的解决方案,除了对“cat”而不是“and”使用宏。
如何缩短stringByAppendingString和使用#define:
#define and stringByAppendingString
因此你可以使用:
NSString* myString = [@"Hello " and @"world"];
问题是它只适用于两个字符串,你需要包装额外的括号更多的追加:
NSString* myString = [[@"Hello" and: @" world"] and: @" again"];