├── LICENSE.md ├── ORBSwitch ├── ORBSwitch.h └── ORBSwitch.m ├── ORBSwitchDemo ├── ORBSwitchDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ORBSwitchDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Resources │ │ ├── mario_bg.png │ │ ├── mario_l.png │ │ ├── mario_r.png │ │ ├── sw_bg.jpg │ │ ├── sw_bg_on.jpg │ │ └── sw_knob.png │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── ORBSwitchDemoUITests │ ├── Info.plist │ └── ORBSwitchDemoUITests.m ├── README.md └── Screenshots ├── flow_w180.gif ├── flow_w300.gif └── switch.jpg /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /ORBSwitch/ORBSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitch/ORBSwitch.h -------------------------------------------------------------------------------- /ORBSwitch/ORBSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitch/ORBSwitch.m -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/AppDelegate.h -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/AppDelegate.m -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Info.plist -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Resources/mario_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Resources/mario_bg.png -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Resources/mario_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Resources/mario_l.png -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Resources/mario_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Resources/mario_r.png -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Resources/sw_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Resources/sw_bg.jpg -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Resources/sw_bg_on.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Resources/sw_bg_on.jpg -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/Resources/sw_knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/Resources/sw_knob.png -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/ViewController.h -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/ViewController.m -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemo/main.m -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemoUITests/Info.plist -------------------------------------------------------------------------------- /ORBSwitchDemo/ORBSwitchDemoUITests/ORBSwitchDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/ORBSwitchDemo/ORBSwitchDemoUITests/ORBSwitchDemoUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/flow_w180.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/Screenshots/flow_w180.gif -------------------------------------------------------------------------------- /Screenshots/flow_w300.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/Screenshots/flow_w300.gif -------------------------------------------------------------------------------- /Screenshots/switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNSHuman/ORBSwitch/HEAD/Screenshots/switch.jpg --------------------------------------------------------------------------------