/Debugging

Debugging in Xcode

Primary LanguageSwift

Debugging

  1. Print statements

  2. Break Points

Print statements

It is one of the most basic tools for debugging the issues.Using CustomStringConvertible and CustomDebugStringConvertible to print objects or structs.print and DebugPrint along with using po in the debugger.

Break Points

Xcode's debugging capabilities through breakpoints and some lldb commands.