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
- Host: GitHub
- URL: https://github.com/0xleif/udloader
- Owner: 0xLeif
- Created: 2020-09-03T22:54:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-03T23:04:15.000Z (almost 6 years ago)
- Last Synced: 2025-02-10T23:37:54.187Z (over 1 year ago)
- Topics: later, nio, swift, userdefaults
- Language: Swift
- Homepage: https://github.com/0xLeif/Later
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
// ...
}
```