I have an app which I am testing using the iPhone simulator.
When I click Build and Debug, the program executes upto certain line and then seems to stop without any error.
- I do not have any breakpoints ON.
- In Console, I see NSLog o/p for upto line X and then see (gdb). There is no error. But for some reason it is not printing the o/p after line X
- The iphone seems to be frozen and does not respond.
I am not sure where my app is stuck. Please help.
If you see (gdb) in the run log, it means that something has tripped it (e.g., a breakpoint or certain code errors) and caused XCode to pause the process and load it into the debugger. This can happen even without any breakpoints on. Open up the debugger console in XCode and look at the stack trace for the tripping thread to see where the hangup is.