Luke
Luke
@khuffie sorry, this paragraph in the Readme wasn't updated properly... I just created a PR with a fix for that. In the meantime, try that: ```swift public struct WeatherSettings: DefaultsSerializable...
@nikans @vBoykoGit please take a look at https://github.com/sunshinejr/SwiftyUserDefaults/issues/206 and let me know if it helps!
@huybuidac you need to also define `_defaultsArray` in addition to `_defaults` to fully implement the `DefaultsSerializable` protocol, e.g.: ```swift public static var _defaults: DefaultsCodableBridge { return DefaultsCodableBridge() } public static...
Hey @pepejeria, we do not support dictionary objects other than the `[String: WhateverIsAbleToBeStoredByPlists]`. So basically `UIColor` is not ready yet to be stored in a dictionary in User Defaults. There...
@pepejeria what’s the compile error?
@pepejeria ah sorry about that, seems like some parts of the docs are not updated. Here’s a source code for one of our test cases, you would specify a specific...
hey @MaxHasADHD, if you used archiving then yes, you could use the `DefaultsKeyedArchiverBridge` 👍 in terms of usage you're correct (given `. serverChangeTokens` is a `DefaultsKey`), depending on your Swift...
hey @marwamelfeky can you copy-paste a sample code that produces that error?
@marwamelfeky what is the Swift version you use? Also, what version of SwiftyUserDefaults do you use? I see static keys which means probably version 4?
Hey @gabors, sorry that you had to go through this issue. Could you check #242 and #239 to see if it helps? There were quite a few changes to the...