在 Objective C 中,可以执行以下操作来检查字符串:
if ([myString isEqualToString:@""]) { NSLog(@"myString IS empty!"); } else { NSLog(@"myString IS NOT empty, it is: %@", myString); }
如何在 Swift 中检测空字符串?
现在有内置的能力来检测空字符串.isEmpty:
.isEmpty
if emptyString.isEmpty { print("Nothing to see here") }
Apple 预发布文档:“字符串和字符”。