ObjectUserDefaults

An object oriented UserDefaults.

UserDefaults uses methods to get values and set values with given keys, but you have to pass keys as parameters each time you want to set or get a value. With ObjectUserDefaults, each item in stored in UserDefaults is represented by an object and its value can be set and gotten trough that. That’s mean that instead of storing keys in constant, you can store direct references to items.

Usage

import ObjectUserDefaults

let item = ObjectUserDefaults.standard.item(forKey: "Key") // Creates a reference to the key "Key"

print(item.value) // Prints the value of the key
item.value = true // Sets the value of the key
print(item.boolValue) // Prints the boolean value of the key

Documentation

See the docs here