NSLogにJSONファイル全体を印刷させる方法はありますか?私は現在言っています
NSString *deviceInfo = [NSString stringWithFormat:@"%@ %@",
[[UIDevice currentDevice]model], [[UIDevice currentDevice]systemVersion]];
NSDictionary *json = [deviceInfo JSONValue];
NSLog(@"json file = %@", json);
そして、「json file =(null)」を出力しています
ありがとうクリントン