Question

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 !

Était-ce utile?

La solution

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

Autres conseils

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top