使用Google Places API中的数据填充ViewController(不是TableViewController)中的TableView时遇到问题。
我已经成功地提取数据并将JSON解析为带有注释的MKMapView,所以我知道该部分正在工作,但我希望数据也流入下面的表格中(见图)。
我到处寻找有关如何执行此操作的简单说明。甚至按照教程(但它是为TableViewController,所以我希望我的问题只是我链接它的方式)。另一种可能性是放置[self.tableView reloadData];
电话。这对我来说是合乎逻辑的,但很可能在错误的地方。显然TableView将保持空白,如果它不在正确的位置,但我已在几个地方尝试过。
注意:我只包含了相关代码,希望能让您更容易找到。 TableView对象作为其数据源和委托连接到ViewController,原型单元在#pragma代码中调用的属性编辑器中称为“单元”,JSON数据存储在名为“places”的NSArray中。请告诉我,如果你发现了一些我错过的愚蠢行为,导致这种情况无效,并提前致谢。
@interface RendezvousViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
@property (strong, nonatomic) NSArray *places;
@property (strong, nonatomic) IBOutlet UITableView *tableView;
-(void)viewDidLoad {
self.tableView.dataSource = self;
self.tableView.delegate = self;
}
-(void) queryGooglePlaces: (NSString *) googleType {
// Build the url string to send to Google.
NSString *url = [NSString stringWithFormat:@"https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=%f,%f&radius=%@&types=food|restaurant|bar&sensor=true&keyword=%@&key=%@",currentCentre.latitude,currentC
entre.longitude,[NSString stringWithFormat:@"%i",currenDist],selection, kGOOGLE_API_KEY];
url = [url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"%@", url);
//Formulate the string as a URL object.
NSURL *googleRequestURL=[NSURL URLWithString:url];
// Retrieve the results of the URL.
dispatch_async(kBgQueue, ^{
NSData* data = [NSData dataWithContentsOfURL: googleRequestURL];
[self performSelectorOnMainThread:@selector(fetchedData:) withObject:data waitUntilDone:YES];
});
}
-(void)fetchedData:(NSData *)responseData {
//parse out the json data
NSError* error;
NSDictionary* json = [NSJSONSerialization
JSONObjectWithData:responseData
options:kNilOptions
error:&error];
//The results from Google will be an array obtained from the NSDictionary object with the key "results".
NSArray* places = [json objectForKey:@"results"];
//Write out the data to the console.
NSLog(@"Google Data: %@", places);
[self plotPositions:places];
[self.tableView reloadData];
}
#pragma mark - Table view data source
- (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.places count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
NSDictionary *tempDictionary= [self.places objectAtIndex:indexPath.row];
cell.textLabel.text = [tempDictionary objectForKey:@"name"];
if([tempDictionary objectForKey:@"rating"] != NULL)
{
cell.detailTextLabel.text = [NSString stringWithFormat:@"Rating: %@ of 5",[tempDictionary objectForKey:@"rating"]];
}
else
{
cell.detailTextLabel.text = [NSString stringWithFormat:@"Not Rated"];
}
return cell;
}
答案 0 :(得分:1)
您的dispatch_async
电话看起来有些问题。
现在获得数据后,您应该从mainThread
。
您必须将通话修改为:
dispatch_async(kBgQueue, ^{
NSData* data = [NSData dataWithContentsOfURL: googleRequestURL];
dispatch_sync(dispatch_get_main_queue(), ^{
[self fetchedData:data];
});
});
这将确保只有在您完成后台线程中谷歌的加载数据时才会调用[self fetchedData:data];
。
以下是我live示例的类似结果。
此外,代码中还有一个错误:将此NSArray* places = [json objectForKey:@"results"];
更改为self.places = [json objectForKey:@"results"];
。
希望有所帮助。