网络请求返回NSData转换

同步网络请求会返回NSData类型的数据,通过系统的JSON API可以将数据转换成NSDictionary,前提是你的数据是json类型的。

NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];


你可能感兴趣的:(网络请求返回NSData转换)