美文网首页
判断字符串是否为空

判断字符串是否为空

作者: H_A_N | 来源:发表于2017-09-16 16:46 被阅读0次
- (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;
}

相关文章

网友评论

      本文标题:判断字符串是否为空

      本文链接:https://www.haomeiwen.com/subject/fafusxtx.html