Pregunta

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 !

¿Fue útil?

Solución

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

Otros consejos

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top