├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Package.swift ├── PaperSwitch └── RAMPaperSwitch.swift ├── PaperSwitchDemo ├── PaperSwitch │ ├── Info.plist │ └── PaperSwitch.h ├── PaperSwitchDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PaperSwitch.xcscheme ├── PaperSwitchDemo │ ├── AppDelegate.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── btn_next.imageset │ │ │ ├── Contents.json │ │ │ └── next.png │ │ ├── img_phone_off.imageset │ │ │ ├── Contents.json │ │ │ └── phone_off.png │ │ ├── img_phone_on.imageset │ │ │ ├── Contents.json │ │ │ └── phone_on.png │ │ ├── img_users1.imageset │ │ │ ├── Contents.json │ │ │ └── users1.png │ │ └── img_users2.imageset │ │ │ ├── Contents.json │ │ │ └── users2.png │ ├── Info.plist │ ├── Launch.storyboard │ ├── Main.storyboard │ └── ViewController.swift └── PaperSwitchDemoTests │ ├── Info.plist │ └── PaperSwitchDemoTests.swift ├── RAMPaperSwitch.podspec ├── README.md ├── docs ├── Classes.html ├── Classes │ └── RAMPaperSwitch.html ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── PaperSwitchDemo.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ └── RAMPaperSwitch.html │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ └── gh.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ └── jquery.min.js │ │ │ └── undocumented.txt │ │ │ └── docSet.dsidx │ └── PaperSwitchDemo.tgz ├── img │ ├── carat.png │ ├── dash.png │ └── gh.png ├── index.html ├── js │ ├── jazzy.js │ └── jquery.min.js └── undocumented.txt ├── header.png ├── paper-switch.gif └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/Package.swift -------------------------------------------------------------------------------- /PaperSwitch/RAMPaperSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitch/RAMPaperSwitch.swift -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitch/Info.plist -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitch/PaperSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitch/PaperSwitch.h -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo.xcodeproj/xcshareddata/xcschemes/PaperSwitch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo.xcodeproj/xcshareddata/xcschemes/PaperSwitch.xcscheme -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/AppDelegate.swift -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/btn_next.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/btn_next.imageset/Contents.json -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/btn_next.imageset/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/btn_next.imageset/next.png -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_phone_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_phone_off.imageset/Contents.json -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_phone_off.imageset/phone_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_phone_off.imageset/phone_off.png -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_phone_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_phone_on.imageset/Contents.json -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_phone_on.imageset/phone_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_phone_on.imageset/phone_on.png -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_users1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_users1.imageset/Contents.json -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_users1.imageset/users1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_users1.imageset/users1.png -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_users2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_users2.imageset/Contents.json -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_users2.imageset/users2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Images.xcassets/img_users2.imageset/users2.png -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Info.plist -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Launch.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Launch.storyboard -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/Main.storyboard -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemo/ViewController.swift -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemoTests/Info.plist -------------------------------------------------------------------------------- /PaperSwitchDemo/PaperSwitchDemoTests/PaperSwitchDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/PaperSwitchDemo/PaperSwitchDemoTests/PaperSwitchDemoTests.swift -------------------------------------------------------------------------------- /RAMPaperSwitch.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/RAMPaperSwitch.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/README.md -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/RAMPaperSwitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/Classes/RAMPaperSwitch.html -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/Classes/RAMPaperSwitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/Classes/RAMPaperSwitch.html -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/Documents/undocumented.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/PaperSwitchDemo.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/docsets/PaperSwitchDemo.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/undocumented.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/header.png -------------------------------------------------------------------------------- /paper-switch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/paper-switch.gif -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ramotion/paper-switch/HEAD/screenshot.gif --------------------------------------------------------------------------------