//合并字符串数组 NSString *str = [array componentsJoinedByString:@"|"]; //字符串切割成数组 NSArray *array=[str componentsSeparatedByString:@"|"]; //可变数组元素删除 [array removeObjectAtIndex:1]; //取指定索引元素 [array objectAtIndex:1] 相关文章: 2022-12-23 2022-12-23 2022-12-23 2022-12-23 2022-12-23 2021-12-21 2021-06-08