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

判断字符串为空

作者: 濤子 | 来源:发表于2017-02-28 14:05 被阅读23次

    有时[str isEqualToString:@""] 并不好用,所以整理下面几种方法判断字符串是否为空

    1. if (str == nil || str == NULL)
    2. if ([str isKindOfClass:[NSNull class]])
    3. if ([[str stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] length]==0)
    

    相关文章

      网友评论

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

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