So I was making an rss reader for my school and finished the code. I ran the test and it gave me that error. Here is the code it\'s referring to:
- (UITableV
In my case, the crash happened when I calleddeselectRowAtIndexPath:
deselectRowAtIndexPath:
The line was [tableView deselectRowAtIndexPath:indexPath animated:YES];
[tableView deselectRowAtIndexPath:indexPath animated:YES];
Changing it to [self.tableView deselectRowAtIndexPath:indexPath animated:YES]; FIXED MY PROBLEM!
[self.tableView deselectRowAtIndexPath:indexPath animated:YES];
Hope this helps anyone