Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumSwiftCodable custom keysSingle-choice MCQ

This type encodes fine but fails to decode. Why?

struct Profile: Codable { var nickname: String? enum CodingKeys: String, CodingKey { case nickname } } // decoding JSON: {}