0

I've been searching for information on crash reports through xcode 7.. Most of the information I have found though has to do with older versions of xcode I think.. I don't know where to begin.. When i go into the organizer window I see this..

enter image description here

Then when i click on the "Open in Project" button.. I see this

enter image description here

It doesn't really give me any information except what i see over there.. Opening Thread 0 Thread 1 Thread 2 doesnt show much either. Clicking on each of these things doesn't show me where the problem is in the code..

So where do I go from here? Anything helpful i can read to understand what to do with this crash report?

Reliaks
  • 74
  • 1
  • 12
Brian
  • 105
  • 12

2 Answers2

0

You need to look in the individual threads for where the error occurred. Here is an example of a crash report with the error circled in red.

enter image description here

Clicking the error will bring you to where it occurs in your project's code.

  • Hi Thank you for the response.. No matter where i click in all the threads it doesn't bring me to where it occurs in code.. Nothing changes on the right side. – Brian Jun 10 '16 at 15:32
0

I suggest that you first read about debug symbols. An understanding of debug symbols and how memory maps to lines of code is necessary for you to locate the crash in your code. And even then, sometimes this can get really tricky. Good luck!

Community
  • 1
  • 1
Hahnemann
  • 4,378
  • 6
  • 40
  • 64