I've joined an already-started iOS app project. Whenever I debug the app, my app hits a breakpoint on app launch (at return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
) if All Exceptions breakpoint is enabled. If I hit resume a few times (or disable the breakpoint), the app starts and goes to the main screen without any problem, however, the breakpoint hits every time I launch the app and it's pretty annoying while debugging.
How can I find the cause of the problem? (as the app was handed to me as-is, I have no way of knowing what started causing it in the first place) Here is the stack trace from the exception:
(sorry for posting as image, I don't think there's a way to post it as text)
It seems to be related to some font files (from the stack trace), and the project did have some custom fonts at earlier stages, however I've eliminated all instances of custom fonts from storyboards, replacing them with system fonts. Though the problem persists. How can I pinpoint the exact cause?