我是iOS開發新手,我的問題是當我解析數據時,比只顯示上面的值顯示的數值沒有顯示。請解決我的問題。 數組名稱city info獲得3值,但是當我想要顯示它們時,它會給出onle數組的最後一個值。只獲取字典的最後一個值
-(void)connectionDidFinishLoading:(NSURLConnection *)connection {
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:WebData1 options:0 error:0];
NSArray *city_info = [json objectForKey:@"city_info"];
for(NSDictionary *dic in city_info) {
NSMutableArray *vlcc_service_name = [dic objectForKey:@"vlcc_service_name"];
Centers = [[NSMutableArray alloc]initWithObjects:vlcc_service_name, nil];
}
// NSLog(@"%@", vlcc_service_name);
NSLog(@"%@", Centers);
[_CenterTableView reloadData];
}
的請求給你 「city_info」 的JSON值澄清 – Jamil
JSON數據 city_info vlcc_service_name: 「減肥」 vlcc_service_name: 「美容院」 vlcc_service_name: 「體育」 –
此非常簡單。但是您沒有提供適當的信息來解決您的問題。 – Jamil