├── .gitignore ├── LICENSE ├── README.md ├── UserDefaultsPropertyWrapper.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── UserDefaultsPropertyWrapper ├── UserDefault.swift ├── UserDefaultsObservation.swift └── main.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/README.md -------------------------------------------------------------------------------- /UserDefaultsPropertyWrapper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/UserDefaultsPropertyWrapper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UserDefaultsPropertyWrapper.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/UserDefaultsPropertyWrapper.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UserDefaultsPropertyWrapper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/UserDefaultsPropertyWrapper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /UserDefaultsPropertyWrapper/UserDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/UserDefaultsPropertyWrapper/UserDefault.swift -------------------------------------------------------------------------------- /UserDefaultsPropertyWrapper/UserDefaultsObservation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/UserDefaultsPropertyWrapper/UserDefaultsObservation.swift -------------------------------------------------------------------------------- /UserDefaultsPropertyWrapper/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V8tr/UserDefaultsPropertyWrapper/HEAD/UserDefaultsPropertyWrapper/main.swift --------------------------------------------------------------------------------