I'm passing location_id from the LocationTableViewController to the BeerTableViewController using the prepareForSegue method to get a locations beer results when a location cell is tapped. My problem is that the location_id is only updated every other time.
Example: When tapping location 1, it loads the beers for that location. Then I hit the back button and tap location 2, but it still loads the location 1 beers. If I hit back again, then tap location 2 again, it does display the correct location 2 beers.
Why does it take two attempts to load the correct location_id?
LocationTableViewController.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
self.selected_location = indexPath.row;
}
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if([[segue identifier] isEqualToString:@"beer"]){
BeerTableViewController *beer = (BeerTableViewController *)[segue destinationViewController];
Location *location = [self.location_results objectAtIndex:self.selected_location];
beer.location_id = location.location_id;
}
}
Then in the BeerTableViewController I use the location_id to get results
BeerTableViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *path = [NSString stringWithFormat:@"locations/%@/beers.json", self.location_id];
[[LocationApiClient sharedInstance] getPath:path parameters:nil
success:^(AFHTTPRequestOperation *operation, id response) {
NSLog(@"Response: %@", response);
NSMutableArray *beer_results = [NSMutableArray array];
for (id beerDictionary in response) {
Beer *beer = [[Beer alloc] initWithDictionary:beerDictionary];
[beer_results addObject:beer];
}
self.beer_results = beer_results;
[self.tableView reloadData];
}
failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error fetching beers!");
NSLog(@"%@", error);
}];
}
