gpt4 book ai didi

ios - 当字符串为空时,componentsSeparatedByString 返回 1 个对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:01:13 34 4
gpt4 key购买 nike

我通过 componentsSeparatedByString 将字符串转换为数组。它返回数组完美。但是当字符串为空时返回 1 个对象。

为什么会这样?

NSMutableArray *imagesList=[[[productDetail objectForKey:@"productImage"] componentsSeparatedByString:@","]mutableCopy];

最佳答案

这是因为,您传递的是空字符串 ("") 并且 componentsSeparatedByString 试图用逗号 (,) 分隔您的字符串,但它们在您的字符串中不是逗号 (,),所以它是返回 1 个数组项(即“”)。

NSMutableArray *imagesList = [[NSMutableArray alloc]init];    
if(![productDetail isEqualToString:@""]) {
imagesList=[[[productDetail objectForKey:@"productImage"] componentsSeparatedByString:@","]mutableCopy];
}

关于ios - 当字符串为空时,componentsSeparatedByString 返回 1 个对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30996389/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com