iOS:字符串中的 if-elsewithformat

发布于 2024-12-25 22:30:55 字数 273 浏览 2 评论 0原文

我是一个 iOS 新手,所以请耐心等待。

我想使用 stringWithFormat 构造一个字符串,但我想仅在条件为真时才放入字符串的一部分。我将如何实现类似的目标 -

myString = [NSString stringWithFormat:@"%@%@", 
           @"myString1",
           //put myString2 only if (someCondition)]

如果我不够清楚,请告诉我。

I am an iOS newbie, so please bear with me.

I want to construct a string using stringWithFormat, but I want to put in a part of a string only if a condition is true. How would I achieve something like -

myString = [NSString stringWithFormat:@"%@%@", 
           @"myString1",
           //put myString2 only if (someCondition)]

Please let me know if I am not clear enough.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

尴尬癌患者 2025-01-01 22:30:55

最清晰的方法是使用显式的 if 块。

但是,您也可以使用三元运算符内联执行此操作:

BOOL condition = YES;
NSString* str = [NSString stringWithFormat: @"%@%@", @"string1", 
                                                     (condition) ? 
                                                         @"string2" : 
                                                         @""];

The most legible way to do this would be to use an explict if block.

However, you can also do it inline with the ternary operator:

BOOL condition = YES;
NSString* str = [NSString stringWithFormat: @"%@%@", @"string1", 
                                                     (condition) ? 
                                                         @"string2" : 
                                                         @""];
不交电费瞎发啥光 2025-01-01 22:30:55

实现此目的的一种方法是,如果条件为 false,则插入一个空字符串,并使用第二个字符串为 true,如下所示:

myString = [NSString stringWithFormat:@"%@%@", @"myString1",
           (condition) ? @"This is myString2" : @""];

One way to achieve that is to insert an empty string if the condition is false and use the second string is true like this:

myString = [NSString stringWithFormat:@"%@%@", @"myString1",
           (condition) ? @"This is myString2" : @""];
雪落纷纷 2025-01-01 22:30:55
NSString *myString = nil;
if (condition1) {
   myString = [NSString stringWithFormat:@"%@", condition1];
} else {
   myString = [NSString stringWithFormat:@"%@", condition2];
}
NSString *myString = nil;
if (condition1) {
   myString = [NSString stringWithFormat:@"%@", condition1];
} else {
   myString = [NSString stringWithFormat:@"%@", condition2];
}
小草泠泠 2025-01-01 22:30:55
    BOOL test =0;
NSString *string = [NSString stringWithFormat:@"%@%@", @"myString1", test? @"Mystriong 2":@"Mystring3"];
NSLog(@"string: %@", string);
    BOOL test =0;
NSString *string = [NSString stringWithFormat:@"%@%@", @"myString1", test? @"Mystriong 2":@"Mystring3"];
NSLog(@"string: %@", string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文