json字符串转换
1.json字符串转字典或数组
方法:+ (id)JSONObjectWithData:(NSData)dataoptions:(NSJSONReadingOptions)opterror:(NSError _Nullable *)error
``` javascriptNSString *jsonStr;
NSData*jsonData = [jsonStrdataUsingEncoding:NSUTF8StringEncoding];
NSError*error;
NSDictionary*dic = [NSJSONSerialization JSONObjectWithData:jsonDataoptions:NSJSONReadingMutableContainers error:&error];
2.数组或者字典转换为json字符串
【json字符串转换】方法:+ (NSData)dataWithJSONObject:(id)objoptions:(NSJSONWritingOptions)opterror:(NSError _Nullable *)error
NSData *jsonData =https://www.it610.com/article/[NSJSONSerialization dataWithJSONObject:dicoptions:(NSJSONWritingOptions)opterror:&error];
推荐阅读
- 一起来学习C语言的字符串转换函数
- 视频转换器哪种好用()
- 以太坊中的计量单位及相互转换
- 字符串拼接成段落,换行符(\n)如何只执行n-1次
- C语言的版本比较
- 怎么将桌面上的CAD图纸添加到软件中进行BMP格式转换()
- NAT(网络地址转换技术)
- JavaScript|JavaScript — call()和apply()、Date对象、Math、包装类、字符串的方法
- JS截取字符串的方法详解
- Python|Python 字符串 子串 回文串