Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
运行 Xamarin Studio 4.1.9、Xamarin.iOS。
当您将本机代码链接到您的应用程序时,您如何在该本机代码中设置断点?
最简单的方法是使用本机调试器(例如gdb或lldb)附加到现有进程,例如使用--pid=XXXXX. 然后,您可以设置断点、中断/继续执行、设置监视……就像使用托管调试器一样。
gdb
lldb
--pid=XXXXX
即使您使用托管调试器(在 Xamarin.Studio 内部)调试托管端,这也有效,但您必须来回切换调试器(例如,当断点被命中时)。
注意:您可以按原样(命令行)或从某些 GUI(例如 Xcode)使用本机调试器。