iOS返回数据解析报错

报错[_NSInlineData objectForKey:]

返回的是NSData类型
需要转换数据型
NSData *ResultDic = responseObject;
NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:ResultDic options:NSJSONReadingMutableLeaves error:nil];
NSArray *data = [jsonDict objectForKey:@"data"];

报错[__NSCFNumber length]

返回的类型是NSNumber 当做NSString类型处理了

你可能感兴趣的:(iOS返回数据解析报错)