Search code examples
iphonecocoa-touchcrash

The Debugger has exited due to signal 11 (SIGSEGV).The Debugger has exited due to signal 11 (SIGSEGV)


I have a problem on 3GS Iphone. When I deploy a application on phone, it exits with the following error.

The Debugger has exited due to signal 11 (SIGSEGV). The Debugger has
exited due to signal 11 (SIGSEGV).

After that application not started & it installed on phone but when phone disconnected then it works.


Solution

  • Your app crashed because you accessed memory that you hadn't allocated. The next step is to look at the stack trace and your source code to see where you did this.

    This page in Apple's docs gives an overview of debugging iPhone applications.