I've added a Break on Exception
breakpoint as discussed on previous threads and discussed here so that my app will break at the relevant place in my code when an exception happends but now every time I launch the app, Xcode breaks instantly in main.m at this line:
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
No error message is displayed or shown in the log the only log output is (lldb)
.
The app does not appear to have crashed and the app does not crash or break at this line if I remove the Break on Exception rule.
I'm using the LLDB debugger and Automatic Reference Counting.