arrary和string之间的互转
2016-03-21 本文已影响19人
刘勇虎
NSArray *array = [Str componentsSeparatedByString:@","];
// 注意:NSArray *b = [a componentsSeparatedByString:@","];
此方法 所得到的数组 因为不是 init ....方法, 所以不要写释放 b 的内存 ,
[b release];这句话不可以写上去!!!否则就出现内存为 -1 的现象,程序 CRASH !
```
将array数组转换为string字符串
NSString *tempString = [mutableArray componentsJoinedByString:@","];
```