Exception Type: EXC_CRASH (SIGABRT)

It’s not a crash, it’s an abort due to an exception. It means that your application is passing bad data to a system routine and the routine is saying that it’s bad and can’t continue, so it’s killing your app. The console should show something about what went wrong. One common exception that can occur is attempting to get the n + 1st object from an array with only n objects in it. (For example getting the 5th element of an NSArray when there are only 4 elements.) The console will have a message that says just that. So check the console to see what might have happened.

Leave a Comment