[UITableView _contentOffsetForScrollingToRowAtIndexPath:atScrollPosition:]
Seems to me that your table view does not have any rows or sections in yet. Two possibilities come to my mind.
- Check your
numberOfRowsInSection
delegate andnumberOfSectionsInTableView
so that they are not set to 0. - Its possible that the
tableview
has not yet finished loading the data.
Do share your findings, so I might be able to help out further if needed.