How to set breakpoints for specific functions/methods using LLDB command line

January 13, 2013

The motivation

Let’s say that during debugging you want to pause execution every time a view will appear in an iOS app (viewWillAppear) and you have so many controllers that adding the breakpoints manually would be cumbersome.

The solution

You can do just that using lldb commands. Pause the execution at the start of your program by adding a logical breakpoint.

Then in the lldb command line write the following command breakpoint set -n NSLog. Which basically says, set a breakpoint in the C function named NSLog. There are other flavors and aliases of it on LLDB tutorial page under the Setting breakpoints section.

Now resume your thread execution. The code should break every time NSLog gets called. However, you will initially get the assembly version of it, so you’ll have to manually move one frame up.

Similar, you could pause execution every time viewWillAppear gets messaged using breakpoint set -S viewWillAppear:

Also, to save you the trouble of writing this every time you run your app, you could add it as a breakpoint command and enable/disable the parent breakpoint at will. In that case “Automatically continue after evaluating” should be selected so that the parent breakpoint will only execute the command and not break the execution.

Comments

comments powered by Disqus