Swift version: 5.10
When you use JSONEncoder
and Codable
to create JSON from your Swift data, it comes out in a compressed format by default – it has all its excess whitespace removed. This makes it efficient for transferring over the network, but hard to debug because it’s just a big jumble of words.
For debugging purposes, it’s a good idea to enable pretty printing for your encoded JSON, which will tell JSONEncoder
to separate everything using line breaks and spaces so you can read it more easily.
To make this happen, set the outputFormatting
property of your JSON encoder to be .prettyPrinted
, like this:
let encoder = JSONEncoder()
encoder.outputFormatting = .prettyPrinted
SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.