小编典典

在 Swift 中检查空字符串?

all

在 Objective C 中,可以执行以下操作来检查字符串:

if ([myString isEqualToString:@""]) {
    NSLog(@"myString IS empty!");
} else {
    NSLog(@"myString IS NOT empty, it is: %@", myString);
}

如何在 Swift 中检测空字符串?


阅读 60

收藏
2022-07-30

共1个答案

小编典典

现在有内置的能力来检测空字符串.isEmpty

if emptyString.isEmpty {
    print("Nothing to see here")
}

Apple
预发布文档:“字符串和字符”

2022-07-30