Try-Catch equivalent in Objective-C / xcode
- by IIS7 Rewrite
I get an app crash in main.m in my app and have no idea why the error is happening because xcode doesn't show me where the crash occurs, it shows me that it crashes at return UIApplicationMain(argc, argv ...) which tells me nothing.
Is there a way to have in xcode / Objective-C the equivalent of a try/catch in Visual Studio to see exactly where…