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      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

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.