[iOS]字符串转字典
Posted yangykaifa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[iOS]字符串转字典相关的知识,希望对你有一定的参考价值。
有点时候,我们json中有post请求的网址,这个时候我们须要把网址字符串转换成body体 字典 放在post请求中
NSString *body = [self.url_C_ componentsSeparatedByString:@"="].lastObject;
NSData *data = [body dataUsingEncoding:NSUTF8StringEncoding];
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
以上是关于[iOS]字符串转字典的主要内容,如果未能解决你的问题,请参考以下文章