Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 8 down vote accepted

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:

LLDB is in early development, but is mature enough to support basic debugging scenarios on Mac OS X in C, Objective-C and C++.

For now lets try a simple thing:

  1. Run your app in Xcode in the simulator under lldb.
  2. Press the pause button in the debug area.
  3. Type breakpoint set -r . -s <PRODUCT_NAME> in the debugger console
  4. Press the continue button.

breakpoint set is lldb's command to create breakpoints. The location is specified using a regular expression on function/method names, in this case . which matches any method. The -s option is used to limit the scope to your executable (needed to exclude frameworks).

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:

  • br list Shows all breakpoints
  • br dis <num> Disables breakpoint temporarly
  • br en <num> Enables a disabled breakpoint
  • c Continues execution
share|improve this answer
Thanks for the detailed explanation. I tried to show list of the breakpoints and it worked, but how to set breakpoints on all methods with lldb? – Matrosov Alexander Feb 14 '12 at 14:35
It's point three in the description above: If your app is named "MyFooApp", type breakpoint set -r . -s MyFooApp in the debugger console. – Nikolai Ruhe Feb 14 '12 at 14:44
Thanks it's work now (it was my mistake - I made ​​a mistake in entering the name of the project :) sorry). Thank you very much - it's work great! – Matrosov Alexander Feb 14 '12 at 14:52

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.

(lldb) breakpoint set -n ViewDidLoad

Here "-n" means by name.

Also, we can put breakpoints by selector name:

(lldb) breakpoint set -S alignLeftEdges:

Here "-S" means by selector.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.