IOS 开发中判断字符串是否为空字符的方法
Posted 樊特西style
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS 开发中判断字符串是否为空字符的方法相关的知识,希望对你有一定的参考价值。
- (BOOL) isBlankString:(NSString *)string {
if (string == nil || string == NULL) {
return YES;
}
if ([string isKindOfClass:[NSNull class]]) {
return YES;
}
if ([[string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] length]==0) {
return YES;
}
return NO;
}
以上是关于IOS 开发中判断字符串是否为空字符的方法的主要内容,如果未能解决你的问题,请参考以下文章
iOS判断字符串是否为手机号,iOS判断字符串是是否为字符串,iOS判断字符串是否为纯数字
ObjectiveC开发教程--如何判断字符串是否为空的方法