├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── SimpleTwoWayBinding.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SimpleTwoWayBinding-Example.xcscheme ├── SimpleTwoWayBinding.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SimpleTwoWayBinding │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── FormViewModel.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── SubmissionViewController.swift │ └── ViewController.swift └── Tests │ └── Info.plist ├── LICENSE ├── README.md ├── SimpleTwoWayBinding.podspec ├── Sources ├── Bindable.swift ├── BlockBasedSelector │ ├── BlockBasedSelector.h │ ├── BlockBasedSelector.m │ └── BlockBasedSelector.swift ├── NSObject+Observable.swift ├── Observable.swift ├── SimpleTwoWayBindings-Bridging-Header.h └── UIControls+Bindable.swift └── doc └── diag.jpeg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding.xcodeproj/xcshareddata/xcschemes/SimpleTwoWayBinding-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding.xcodeproj/xcshareddata/xcschemes/SimpleTwoWayBinding-Example.xcscheme -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding/FormViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding/FormViewModel.swift -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding/Info.plist -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding/SubmissionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding/SubmissionViewController.swift -------------------------------------------------------------------------------- /Example/SimpleTwoWayBinding/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/SimpleTwoWayBinding/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/README.md -------------------------------------------------------------------------------- /SimpleTwoWayBinding.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/SimpleTwoWayBinding.podspec -------------------------------------------------------------------------------- /Sources/Bindable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Sources/Bindable.swift -------------------------------------------------------------------------------- /Sources/BlockBasedSelector/BlockBasedSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Sources/BlockBasedSelector/BlockBasedSelector.h -------------------------------------------------------------------------------- /Sources/BlockBasedSelector/BlockBasedSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Sources/BlockBasedSelector/BlockBasedSelector.m -------------------------------------------------------------------------------- /Sources/BlockBasedSelector/BlockBasedSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Sources/BlockBasedSelector/BlockBasedSelector.swift -------------------------------------------------------------------------------- /Sources/NSObject+Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Sources/NSObject+Observable.swift -------------------------------------------------------------------------------- /Sources/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Sources/Observable.swift -------------------------------------------------------------------------------- /Sources/SimpleTwoWayBindings-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Sources/SimpleTwoWayBindings-Bridging-Header.h -------------------------------------------------------------------------------- /Sources/UIControls+Bindable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/Sources/UIControls+Bindable.swift -------------------------------------------------------------------------------- /doc/diag.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishkkatoch/SimpleTwoWayBindingIOS/HEAD/doc/diag.jpeg --------------------------------------------------------------------------------