Does anybody know how to automatically set breakpoints on all methods in XCode. I want to know how my program works, and which methods invoke when I interact with the user interface. Thanks for answer.
|
There's no easy way to do this in gdb which is the default debugger in Xcode (at least until v4.2). Using the "Edit Schema" panel you can switch the debugger to lldb. To do this select the "Run" action on the left, and the "Info" tab on the right. There's a "Debugger" popup button where you can select lldb. lldb is the golden future of debugging — but not yet fully functional, stable and integrated in Xcode. It has great capabilities (like a built-in python binding) and is a lot faster than gdb. From lldb.llvm.org:
For now lets try a simple thing:
When you run your app lldb will now break whenever the app hits a function from your main executable. Note that you cannot use Xcode's UI to control lldb (enabling/disabling breakpoints and so). You have to use the lldb console. So here are some useful commands:
|
|||||||
|
|
In some cases, it is more convenient to set breakpoints only on some of the methods. Using LLDB we can put breakpoint on all ViewDidLoad methods by name, for example.
Here "-n" means by name. Also, we can put breakpoints by selector name:
Here "-S" means by selector. |
|||
|
|
