美文网首页
componentsJoinedByString 和 comp

componentsJoinedByString 和 comp

作者: 困惑困惑困惑 | 来源:发表于2017-03-16 09:06 被阅读324次

将string字符串转换为array数组

NSArray  *array = [Str componentsSeparatedByString:@","];

==反向方法

将array数组转换为string字符串

NSString *tempString = [mutableArray componentsJoinedByString:@","];--分隔符

相关文章