maomifadacai
maomifadacai

Reputation: 369

Xcode 4.6, Why does it show assembler although "Show Disassembly When Debugging" is unchecked

I'm using XCODE4.6, "Show Disassembly When Debugging" is unchecked. But it is still showing assembler to me sometimes.

enter image description here

Upvotes: 2

Views: 1020

Answers (1)

trojanfoe
trojanfoe

Reputation: 122391

That option is for displaying the assembler of your compiled code (see the guide). The reason you are seeing some assembler is that you are stepping into library code for which there is no source available.

Upvotes: 2

Related Questions