Prephirences
Prephirences copied to clipboard
Prephirences is a Swift library that provides useful protocols and convenience methods to manage application preferences, configurations and app-state. UserDefaults
In order to share preferences between my app and its extensions, I'm using `UserDefaults(suiteName: "someSuiteName")` instead `UserDefaults.standard`. Because of the custom suite (domain name), the method `clearAll` from Prephirences doesn't...
I believe I am having an issue when trying to get archived objects from the keychain. They always come back as nil. Take the following code: ``` var preferences =...
Fix the tests (the only thing failing for watchOS and tvOS) since you need a full path to load contents from outside the container.
I'm trying to store struct object but not work. ``` struct InstagramApiUser: Codable { var access_token: String var user_id: Int } ``` storing with: ``` let json = try JSONDecoder().decode(InstagramApiUser.self,...