//请求成功返回数据;
需要转化成字典(即json格式数据)
NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:responseObject options:NSJSONReadingMutableLeaves error:nil];
这样打印出来的数据就是Json数据啦,非常直观
//请求成功返回数据;
需要转化成字典(即json格式数据)
NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:responseObject options:NSJSONReadingMutableLeaves error:nil];
这样打印出来的数据就是Json数据啦,非常直观