0

It's the first time I use crittercism and when I take a look to stacktrace there is something like :

0x000b24d9 __32-[MenuViewController loadOrders]_block_invoke + 189

What does mean the + 189 ?

I checked, this is not the line number.

Thanks !

Jean Lebrument
  • 5,079
  • 8
  • 33
  • 67

2 Answers2

2

In other debuggers (i.e. WinDbg) it's the byte offset within that method.

Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
  • Tanks ! With you help I found this article : http://www.raywenderlich.com/33669/overview-of-ios-crash-reporting-tools-part-1 – Jean Lebrument Oct 30 '13 at 12:34
1

The number is the bytes offset from the entry point of the method to the instruction which caused the app to crash. Read this for more info on how to understand crash reports.

Community
  • 1
  • 1
Nikos M.
  • 13,685
  • 4
  • 47
  • 61