Sto tentando di fare in modo che la mia vista tabella ricordi che è l'ultima posizione, in modo che dopo che l'app viene eseguita di nuovo, scorrerà fino a quella posizione. per fare questo, nel mio metodo viewWillDisappear:
, ottengo il primo numero di riga visibile e lo salgo su NSUserDefaults
. quindi nel mio viewDidAppear provo a scorrere fino a quella riga inviando scrollToRowAtIndexPath
alla visualizzazione tabella. Tuttavia ho un NSRangeException
:UITableView scrollToRowAtIndexPath
*** Terminating app due to uncaught exception 'NSRangeException', reason: '-[UITableView scrollToRowAtIndexPath:atScrollPosition:animated:]: section (0) beyond bounds (0).
alcun aiuto apprezzato. Ecco il codice:
- (void)viewDidAppear:(BOOL)animated
{
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
if ([userDefaults valueForKey:@"content_row"] != nil)
{
int rowToHighlight = [[userDefaults valueForKey:@"content_row"] intValue];
NSIndexPath * ndxPath= [NSIndexPath indexPathForRow:rowToHighlight inSection:0];
[contentTableView scrollToRowAtIndexPath:ndxPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
}
}
-(void) viewWillDisappear:(BOOL)animated
{
NSIndexPath *selectedRowPath = [[contentTableView indexPathsForVisibleRows] objectAtIndex:0];
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
[userDefaults setInteger:selectedRowPath.row forKey:@"content_row"];
}
Potresti postare il bit di codice che crea scrollToRowAtIndexPath e NSIndexPath? – probablyCorey