美文网首页
ios 整形数组转换成字符串数组

ios 整形数组转换成字符串数组

作者: 马金星 | 来源:发表于2018-09-10 09:30 被阅读0次

NSArray * ary =  @[@1,@3];
1、先把数组转换成字符串

NSString *string = [ary componentsJoinedByString:@","];//,为分隔符

2、再把字符串转换成数组,即可把整形数组转换成字符串数组

ary = [string componentsSeparatedByString:@","];

3、ok

相关文章

网友评论

      本文标题:ios 整形数组转换成字符串数组

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