美文网首页
componentsSeparatedByString使用注意

componentsSeparatedByString使用注意

作者: i大猫哥 | 来源:发表于2018-09-03 17:00 被阅读258次
      // 以逗号区分开
            NSString *content =  result[@"loanbusiness"];
            if (StrValid(content)) {
                self.dataArray = [content componentsSeparatedByString:@","];
            }else{
                self.dataArray = @[];
            }
    

    注意:如果content内容为空,以逗号区分的时候。会生成一个空字符串的数组。数组内有一个空的字符串。这样会导致一些bug,用之前要对content内容进行判断,是否有内容。只有有内容的时候才能分割。

    相关文章

      网友评论

          本文标题:componentsSeparatedByString使用注意

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