Problem Statement
Which tool offers deeper runtime inspection of objects and call stacks in Swift development?
Explanation
While `print(…)` logging has its place, the LLDB debugger integrated in Xcode allows you to pause execution, inspect variables, view the stack trace and even change values at runtime. This gives much deeper insight into runtime behaviour.
Practice Sets
This question appears in the following practice sets: