本文介绍了如何在 xcode 6 中查看汇编代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 xcode 6 中使用 iOS 设备运行应用程序时如何查看编译器生成的汇编代码.我应该在 xcode 中启用哪些设置才能查看汇编代码?

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?

推荐答案

在 Xcode 选项中,

In Xcode Options,

选择选项

Debug->Debug WorkFlow-> 总是显示反汇编

在代码中要查看汇编代码的地方放置断点.然后您可以在代码到达该断点时查看汇编代码.

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.

这篇关于如何在 xcode 6 中查看汇编代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 16:26
查看更多