How to see assembly code in xcode 6

assembly, ios, objective-c, xcode, xcode6

Solution

In Xcode Options,

Select the option

Debug->Debug WorkFlow-> Always Show Disassembly

Put break point in the code where you want to see assembly code. Then you can view assembly code when code reached to that breakpoint.

Problem

How to see assembly code generated by compiler while running application using iOS device in xcode 6.What are the settings i should enable in xcode to see assembly code?

Original source

Related problems