1.将OC的数组转化成OC格式的字符串
    NSArray * arr = @[@"aa",@"bb",@"cc"];
2.转化
    NSString * jsonStr = [arr JSONString];
    NSLog(@"%@",jsonStr);