UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

SOLVED: What's the container for and what's it doing?

Forums > 100 Days of SwiftUI

Can someone explain what the point of the container is in the encode method and the initializer? I know we need it, because Paul said we do, but I don't really understand what it does. I looked up the Apple documentation and I didn't find the description there to be all that helpful.

class MyClass: ObservableObject, Codable {
    enum CodingKeys: CodingKey {
        case name
    }
    @Published var name = ""

    func encode(to encoder: Encoder) throws {
        var container = encoder.container(keyedBy: CodingKeys.self)

        try container.encode(name, forKey: .name)
    }

    init() {}

    required init(from decoder: Decoder) throws {
        let container = try decoder.container(keyedBy: CodingKeys.self)

        name = try container.decode(String.self, forKey: .name)
    }
}

2      

sad to find no answer yet :(

did you find an answer yourself?

1      

Which container are you referring to?

var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(name, forKey: .name)
var container

is there to create a shorthand version (substitution) of the full declaration, so that it could easily be use many times. Here it is used only once with .encode. It is a convenience. Otherwise the full version of the next line is

try encoder.container(keyedBy: CodingKeys.self).encode(name, forKey: .name)
encoder.container

is using a method .container for the Encoder protocol.

2      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.