An open API service indexing awesome lists of open source software.

https://github.com/0xleif/udloader

UserDefaults + Later
https://github.com/0xleif/udloader

later nio swift userdefaults

Last synced: about 1 year ago
JSON representation

UserDefaults + Later

Awesome Lists containing this project

README

          

# UDLoader

[UserDefaults](https://developer.apple.com/documentation/foundation/userdefaults) & [Later](https://github.com/0xLeif/Later)

## Example

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

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