My application crashes when I\'m deleting row from table. Here is my sources where the bug is detected and stack trace. Thanx!
//delete row from database - (
I got the same error and reason was I delete the last row in the table and my numberOfSectionsInTableView implementation return rowsArray count which was 0..
changing to minimum of 1 solve the case