Domanda

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 !

È stato utile?

Soluzione

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

Altri suggerimenti

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top