How to change a variable's state while debugging an iOS application
Learn to use the expression LLDB command to change application state while debugging.
18 Jul 2022 · 3 min read
In the article on LLDB print commands for iOS debugging with Xcode, we looked at different LLDB print commands to evaluate variables in Xcode's console.
The expression LLDB command alias expr or p provides another interesting possibility. It allows us to change a variable's value while debugging on the fly without having to restart the iOS application.
This approach has the advantage that we don't need to change any code, for example when trying to fix a bug that needs a certain state to reproduce.
Let's see how this works.

Changing a variable in Xcode's console
When our app pauses at a breakpoint, we can use Xcode's console to change a variable to a state we need.
Let's imagine, we are trying to fix a bug that only is reproducable for birds that have a critically endangered conservation state. When a breakpoint hits the relevant line, let's at first print the bird's conservationStatus in Xcode's console:
(lldb) po bird.conservationStatus.title"endangered"
Since we'd like to test the app with a different conservationStatus, we use the p command to change it:
(lldb) p bird.conservationStatus = .cr
When printing the conservationStatus again, we get:
(lldb) po bird.conservationStatus.title"critically endangered"
By hitting the continue programm execution button, we are now able to test the application with a the new changed state.
Changing a variable by using breakpoint actions
When reproducing a bug, we sometimes want a variable to always have a certain value without typing the command every time in the console.
In this case, we can use a breakpoint action. After setting a breakpoint, right-click on it and select Edit Breakpoint.

The Name and Condition fields can stay empty. What we want is to configure a Debugger Command by adding an action with the + button. Here, we add the same command we used in the console.
Additionally, checking the Automatically continue after evaluating actions option ensures that the app doesn't stop at the breakpoint after executing the command.
Conclusion
The expression LLDB command provides a great possibility when debugging apps, the approach has its limits though, for example when working with constants. Trying to assign a new value to a let variable will return an error:
error: cannot assign to property:conservationStatus is a let constant
But besides from that and especially in more complex projects, the expression LLDB command can be a real time safer helping us to test our code or to reproduce a bug without having to restart the application.

Newsletter
Like to support my work?
Say hi
Related tags
Articles with related topics
Latest articles and tips