If you happen to be experienced in development using Visual Studio, but a bit new to working in XCode for iOS development (like me), you are probably used to your application breaking on exceptions during debugging. But by default, your iOS application may not act as you expect when it comes to debugging crash exceptions. You may instead see something like this:
With an error message that says:
*** Terminating app due to uncaught exception
What? Why was my exception uncaught while I am debugging? I, for one, would rather be taken to the point at which the exception ...