我正在使用prepareForSegue方法将location_id从LocationTableViewController传递到BeerTableViewController,以便在点击位置单元格时获取位置啤酒结果。我的问题是location_id只是每隔一次更新一次。
示例:点击位置1时,会加载该位置的啤酒。然后我点击后退按钮并点击位置2,但它仍然加载位置1啤酒。如果我再次回击,再次点击位置2,它会显示正确的位置2啤酒。
为什么要两次尝试加载正确的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;
}
}
然后在BeerTableViewController中我使用location_id来获得结果
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);
}];
}
答案 0 :(得分:2)
tableView:didSelectRowAtIndexPath
将在 prepareForSegue:sender:
之后被称为,因此您在设置{之后将self.selected_location
设置为正确的行 {1}}在啤酒视图控制器上。
这就是为什么你下次看到正确的行。你的啤酒视图控制器总是落后一排。
在location_id
中,如果你有对UITableView的引用,你可以直接从表视图中获取当前正确的选定行。
假设您prepareForSegue:sender:
中有@property'tableView',您可以使用LocationTableViewController
修改强>
如果您的[self.tableView indexPathForSelectedRow]
是LocationTableViewController
的子类,那么您已经拥有此@property UITableViewController
。在这种情况下,您的tableView
将会是这样的:
prepareForSegue:sender: