如何加NSString
? 例子:如何在IOS編程中加上「NSString」?
NSString *[email protected]"hello";
NSString *[email protected]"world";
NSString *[email protected]"";
我想:
s = "helloworld";
感謝幫助。
如何加NSString
? 例子:如何在IOS編程中加上「NSString」?
NSString *[email protected]"hello";
NSString *[email protected]"world";
NSString *[email protected]"";
我想:
s = "helloworld";
感謝幫助。
請使用下面的代碼。
NSString *s= [NSString stringWithFormat:@"%@%@", a, b];
您還可以使用stringByAppendingString:
像這樣 -
NSString *completeString = [a stringByAppendingString:b];
你在說什麼的串聯。並且您需要使用:
NSString *a = @"This ";
NSString *b = @"is a string";
NSString *c= [NSString stringWithFormat:@"%@%@", a, b];
NSString *[email protected]"hello";
NSString *[email protected]"world";
NSString *s=[NSString stringWithFormat:@"%@%@", a, b];
NSString *completeString = [a stringByAppendingString:b];
此功能是好的,容易...
您也可以嘗試搜索功能。這引起了[這個問題] [1]。 [1]:http://stackoverflow.com/questions/510269/how-do-i-concatenate-strings –