Objective-C 中是否有一个通用功能可以插入到我的项目中以简化连接NSString
s 和int
s?
问问题
63469 次
5 回答
35
[NSString stringWithFormat:@"THIS IS A STRING WITH AN INT: %d", myInt];
这就是我通常的做法。
于 2009-04-01T01:15:48.060 回答
30
两个答案都是正确的。如果要连接多个字符串和整数,请使用 NSMutableString 的 appendFormat。
NSMutableString* aString = [NSMutableString stringWithFormat:@"String with one int %d", myInt]; // does not need to be released. Needs to be retained if you need to keep use it after the current function.
[aString appendFormat:@"... now has another int: %d", myInt];
于 2009-04-01T08:04:34.647 回答
3
NSString *s =
[
[NSString alloc]
initWithFormat:@"Concatenate an int %d with a string %@",
12, @"My Concatenated String"
];
我知道您可能正在寻找更简短的答案,但这是我会使用的。
于 2009-04-01T01:17:34.437 回答
3
string1,x ,它们分别被声明为字符串对象和整数变量。如果您想组合这两个值并将 int 值附加到字符串对象并将结果分配给新字符串,请执行以下操作。
NSString *string1=@"Hello";
int x=10;
NSString *string2=[string1 stringByAppendingFormat:@"%d ",x];
NSLog(@"string2 is %@",string2);
//NSLog(@"string2 is %@",string2); is used to check the string2 value at console ;
于 2009-04-02T07:40:41.997 回答
-1
似乎真正的答案是否定的 - 没有简单快捷的方法将 NSStrings 与 Objective C 连接 - 与在 C# 和 Java 中使用“+”运算符没有任何相似之处。
于 2013-06-28T11:36:16.537 回答