Reputation: 1842
When I try to open a crash in project via crashes from Organizer it won't take me anymore to the line of code that crashed and neither give me details about this crash. Any idea why?
Note:Project is an old application.
Upvotes: 1
Views: 912
Reputation: 341
You say that the project is an old application. Does the source code version you have in Xcode match the version of the application that generated the crash report? If your source is newer than the application version that generated the crash, the information in the symbols for the crash dump will not match up and the links may not work.
Upvotes: 3
Reputation: 988
use AddExceptionBreakpoint from xcode debug -> breakpoint createExceptionBreakpoint This will help you .BTW what is the crash description shown in LogView
Upvotes: 0