├── .gitignore ├── .swift-version ├── LICENSE ├── NSSwitch.podspec ├── NSSwitch.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── NSSwitch.xcscheme ├── NSSwitch ├── Info.plist ├── NSSwitch.h ├── NSSwitch.swift └── NSSwitchThumbView.swift ├── NSSwitchDemo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── NSSwitchDemo.entitlements └── ViewController.swift ├── NSSwitch_screenshot.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/LICENSE -------------------------------------------------------------------------------- /NSSwitch.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitch.podspec -------------------------------------------------------------------------------- /NSSwitch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NSSwitch.xcodeproj/xcshareddata/xcschemes/NSSwitch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitch.xcodeproj/xcshareddata/xcschemes/NSSwitch.xcscheme -------------------------------------------------------------------------------- /NSSwitch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitch/Info.plist -------------------------------------------------------------------------------- /NSSwitch/NSSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitch/NSSwitch.h -------------------------------------------------------------------------------- /NSSwitch/NSSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitch/NSSwitch.swift -------------------------------------------------------------------------------- /NSSwitch/NSSwitchThumbView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitch/NSSwitchThumbView.swift -------------------------------------------------------------------------------- /NSSwitchDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitchDemo/AppDelegate.swift -------------------------------------------------------------------------------- /NSSwitchDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitchDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NSSwitchDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitchDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NSSwitchDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitchDemo/Info.plist -------------------------------------------------------------------------------- /NSSwitchDemo/NSSwitchDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitchDemo/NSSwitchDemo.entitlements -------------------------------------------------------------------------------- /NSSwitchDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitchDemo/ViewController.swift -------------------------------------------------------------------------------- /NSSwitch_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/NSSwitch_screenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpennington/NSSwitch/HEAD/README.md --------------------------------------------------------------------------------