How to see build code in xcode 6

How to see the assembly code generated by the compiler when the application is launched using the iOS device in xcode 6. What settings should I enable in xcode to see the assembly code?

+3
source share
1 answer

In Xcode Options

Choose an option

Debugging-> Debugging WorkFlow-> Always show disassembly

Place a breakpoint in the code where you want to see the assembly code. You can then view the assembly code when the code has reached this breakpoint.

+7
source

Source: https://habr.com/ru/post/1682588/


All Articles