美文网首页
IOS 开发中判断字符串是否为空字符的方法

IOS 开发中判断字符串是否为空字符的方法

作者: 真爱要有你才完美 | 来源:发表于2017-05-22 16:10 被阅读86次

    - (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 开发中判断字符串是否为空字符的方法

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