Swift version: 5.6
When you place a regular breakpoint on a line of code, Xcode will pause at that point when it’s reached. However, sometimes you need something a little more fine-grained: perhaps you want the breakpoint to be ignored the first few times it’s hit, or perhaps you want execution to be paused only when a certain condition is true.
Xcode has conditional breakpoints just for this purpose: when you place a breakpoint you can right-click on it and choose “Edit Breakpoint” to see customization options. Try changing the Ignore value from 0 to 10, which will make the line hit repeatedly until finally execution pauses; or try adding a condition inside the Condition field – myVar == 10
for example, which will pause only when myVar
equals 10.
Conditional breakpoints look slightly different from regular breakpoints – look for the white arrow tip inside the main blue breakpoint arrow.
SPONSORED AppSweep by Guardsquare helps developers automate the mobile app security testing process with fast, free scans. By using AppSweep’s actionable recommendations, developers can improve the security posture of their apps in accordance with security standards like OWASP.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.