- (void)viewDidLoad
{
[super viewDidLoad];
NSURL *url=[NSURL URLWithString:@"http://api.geonames.org/citiesJSON?north=44.1&south=-9.9&east=-22.4&west=55.2&lang=de&username=demo"];
NSURLRequest *request=[[NSURLRequest alloc]initWithURL:url];
[[NSURLConnection alloc]initWithRequest:request delegate:self];
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
_data=[[NSMutableData alloc]init];
}
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)thedata{
[_data appendData:thedata];
-(void)connectionDidFinshLoading:(NSURLConnection *)connection{
_name=[NSJSONSerialization JSONObjectWithData:_data options:NSJSONReadingMutableContainers error:nil];
[self.tableView reloadData];
0
A
回答
0
{ 「GEONAMES」:[{ 「LNG」: - 99.12766456604, 「geonameId」:3530597, 「COUNTRYCODE」: 「MX」, 「名稱」:「Mexiko -Stadt「, 」fclName「:」city,village,...「, 」toponymName「:」Mexico City「, 」fcodeName「:」政治實體的資本「, 」wikipedia「:」en。 wikipedia.org/wiki/Mexico_City」, 「LAT」:19.428472427036, 「FCL」: 「P」, 「種羣」:12294193, 「FCODE」: 「PPLC」 },{ 「LNG」:116.397228240967 , 「geonameId」:1816670, 「COUNTRYCODE」: 「CN」, 「名」: 「北平」, 「fclName」: 「城市,村莊,...」, 「toponymName」: 「北京」, 「fcodeName」:「政治實體的首都」, 「維基百科」:「en.wikipedia.org/wiki/Beijing」, 「lat」:39.9074977414405, 「fcl」:「P」,「population」:11716620 , 「FCODE」: 「PPLC」 }]}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [self.name count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell =
[tableView dequeueReusableCellWithIdentifier:@"Cell"
forIndexPath:indexPath];
// Configure the cell...
cell.textLabel.text=[[self.nameobjectAtIndex:indexPath.row]objectForKey:@"geonameId"];
return cell;
}
其沒有顯示任何錯誤消息.....其運行......和表示空表視圖.....
相關問題
- 1. 將Json數據加載到TableView中
- 2. 未在jqgrid中加載json數據
- 3. 在XML解析完成之前加載tableview,未加載數據
- 4. tableView不加載數據
- 5. 加載數據到TableView
- 6. jQuery Flot圖形未加載(JSON數據)
- 7. 未使用jQuery加載JSON數據
- 8. JSGrid - 加載JSON數據 - 「未找到」
- 9. 如何加載tableView中的數據
- 10. 無法將數據加載到TableView中
- 11. NSOperation無法在TableView上加載數據
- 12. Searchbar在tableView和重新加載數據
- 13. tableview中的JSON數據JAVAFX
- 14. 如何將JSON加載到TableView中?
- 15. 從JSON解析的數據不加載某些TableView單元格
- 16. 將JSON數據加載到tableview不起作用
- 17. 用Swift在TableView中顯示JSON數據
- 18. 在tableview中顯示數據json iphone
- 19. 在mg表中加載json給出的數據未定義
- 20. 在iphone中慢速加載Json數據
- 21. 在ListView中加載更多json數據
- 22. 在SQL Server中加載JSON數據
- 23. 在jqGrid中加載JSON數據
- 24. 在recyclerview中加載JSON數據
- 25. 在Android中加載json數據-uitableview
- 26. TableView重新加載數據未調用cellForRowAtIndexPath
- 27. 在[datafx]中使用JdbcSourceReader在TableView中加載數據
- 28. CloudKit應用數據未在tableview中
- 29. 數據未加載到數據庫中
- 30. 重新加載TableView的數據?
需要更多信息。什麼是不加載? UI顯示?空桌子?任何錯誤消息? –
Plesae使用基本格式選項 – Daenarys