estoy tratando de desplazarse mi tableview a la segunda celda:UITableView no se desplaza a la celda
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:0]
atScrollPosition:UITableViewScrollPositionNone
animated:NO];
me sale el error:
*** Terminating app due to uncaught exception 'NSRangeException', reason: '-[UITableView scrollToRowAtIndexPath:atScrollPosition:animated:]: section (1) beyond bounds (0).
'
Mi tableview tiene 30 células que están apareciendo sin secciones.
Muestre su código para 'numberOfSectionsInTableView:' –