Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 378 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 378 Bytes

UDLoader

UserDefaults & Later

Example

// Save Codable Value
SimpleCodableObject(string: "UDLoader", bool: false, int: 3).save(withKey: "simple")

// Load Codable Value
SimpleCodableObject.load(withKey: "simple")
    .whenSuccess { value in
    // ...
}