I received an EXC_BAD_ACCESS when I try scroll up past the top or scroll down past the max position of the table view. This does not happen when tableview is empty but as soon as I add data to table cell and try to scroll up or down to far, I get an “EXC_BAD_ACCESS”.
Is there a way to prevent the user from scrolling too far?
Once i had also a problem like this! maybe something is wrong with your deallocation, that means you release any objects too fast! I can’t tell you exactly what’s wrong, you should post some code, especially the cellForRowAtIndexPath method. So far, check out this method on your own and try to find any dealloc problems.