In my app i am using two table one for filter the data and second for results data. I am using the following line to scroll the tableview at selected index position,
self.indexPaths = [NSIndexPath indexPathForRow:0 inSection:indexPath.row];
[tableview scrollToRowAtIndexPath:self.indexPaths atScrollPosition:UITableViewScrollPositionTop animated:YES];
[tableview reloadData];
but my app is getting crash in only in iPhone5(iOS7) and working fine in all devices even iPhone5(iOS6).
Why does this crash only on iPhone5(iOS7)?
Crashing log is: Terminating app due to uncaught exception 'NSInvalidArgumentException'
the RHS returns the indexpath corresponding to a row and section.
in the above code, you are passing
indexpath.row
toinSection
parameter. This may be wrong.Assume, you have 1 section and 5 rows. whenindexpath.row = 4
(for eg), there wont be a section corresponding to 4 and henceself.indexPaths
becomesnil
since the system would try to look for row 4 in section 4, but section 4 doesnt exist!! Consequently, when you pass nil to below line, it saysnsinvalidargument
exception.