Problem Statement
In Xcode’s debugger, which type of breakpoint automatically triggers when an exception is thrown regardless of line number?
Explanation
An exception breakpoint in Xcode triggers when an exception (such as a runtime crash) occurs, regardless of location. This helps you catch early unexpected errors rather than relying solely on logging or print statements.
Practice Sets
This question appears in the following practice sets: