Giter Club home page Giter Club logo

userdefaultmacro's People

Contributors

maniramezan avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

ynie

userdefaultmacro's Issues

Support for KeyValueStore for use with iCloud.

First of all, please note that I am not very good at English and am using machine translation.
It is great to see that this repository and UserDefaults can be handled easily. I know this is not the purpose of this repository, but I would like to request KeyValueStore support.
For example, we hope to be able to work like this.

  • Specify a default storage location for the entire Class.
  • Option to save only certain properties locally.
@KVSModel(.cloud)
class Settings {
    @LocalSaveProperty(originalName: "otherValue_1")
    var value_1: Bool = false
    var value_2: Bool = false
    var value_3: Bool = false
    @CloudSaveProperty(originalName: "otherValue_2")
    var value_4: Bool = false
}

After deploying @KVSModel

class Settings {
    @LocalSaveProperty(originalName: "otherValue_1")
    var value_1: Bool = false
    @CloudSaveProperty
    var value_2: Bool = false
    @CloudSaveProperty
    var value_3: Bool = false
    @CloudSaveProperty(originalName: "otherValue_2")
    var value_4: Bool = false

     private let userDefaults: UserDefaults
     private let keyValuseStore: NSUbiquitousKeyValueStore
     internal init(userDefaults: UserDefaults = .standard, keyValueStore: NSUbiquitousKeyValueStore = .default) {
           self.userDefaults = userDefaults
           self.keyValuseStore = keyValuseStore
     }
}

Final output code.

class Settings {
    var value_1: Bool = false {
        get {
            userDefaults.bool(forKey: "otherValue_1")
        }
        set {
            userDefaults.set(newValue, forKey: "otherValue_1")
        }
    }
    var value_2: Bool = false {
        get {
            keyValuseStore.bool(forKey: "value_2")
        }
        set {
            keyValuseStore.set(newValue, forKey: "value_2")
        }
    }
    var value_3: Bool = false {
        get {
           keyValuseStore.bool(forKey: "value_3")
        }
        set {
           keyValuseStore.set(newValue, forKey: "value_3")
        }
    }
    var value_4: Bool = false {
        get {
            keyValuseStore.bool(forKey: "otherValue_2")
        }
        set {
            keyValuseStore.set(newValue, forKey: "otherValue_2")
        }
    }

     private let userDefaults: UserDefaults
     private let keyValuseStore: NSUbiquitousKeyValueStore
     internal init(userDefaults: UserDefaults = .standard, keyValueStore: NSUbiquitousKeyValueStore = .default) {
           self.userDefaults = userDefaults
           self.keyValuseStore = keyValuseStore
     }
}

Please note that this was written lightly and any errors are to be expected. Also, default values need to be considered.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.