├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── LabelSwitch.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── LabelSwitch-Example.xcscheme ├── LabelSwitch.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── zhu.bingyi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── LabelSwitch │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.swift │ ├── fire.jpg │ └── water.jpg ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── LabelSwitch.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── zhu.bingyi.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── LabelSwitch.xcscheme │ │ │ ├── Pods-LabelSwitch_Example.xcscheme │ │ │ ├── Pods-LabelSwitch_Tests.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── LabelSwitch │ │ ├── Info.plist │ │ ├── LabelSwitch-dummy.m │ │ ├── LabelSwitch-prefix.pch │ │ ├── LabelSwitch-umbrella.h │ │ ├── LabelSwitch.modulemap │ │ └── LabelSwitch.xcconfig │ │ ├── Pods-LabelSwitch_Example │ │ ├── Info.plist │ │ ├── Pods-LabelSwitch_Example-acknowledgements.markdown │ │ ├── Pods-LabelSwitch_Example-acknowledgements.plist │ │ ├── Pods-LabelSwitch_Example-dummy.m │ │ ├── Pods-LabelSwitch_Example-frameworks.sh │ │ ├── Pods-LabelSwitch_Example-resources.sh │ │ ├── Pods-LabelSwitch_Example-umbrella.h │ │ ├── Pods-LabelSwitch_Example.debug.xcconfig │ │ ├── Pods-LabelSwitch_Example.modulemap │ │ └── Pods-LabelSwitch_Example.release.xcconfig │ │ └── Pods-LabelSwitch_Tests │ │ ├── Info.plist │ │ ├── Pods-LabelSwitch_Tests-acknowledgements.markdown │ │ ├── Pods-LabelSwitch_Tests-acknowledgements.plist │ │ ├── Pods-LabelSwitch_Tests-dummy.m │ │ ├── Pods-LabelSwitch_Tests-frameworks.sh │ │ ├── Pods-LabelSwitch_Tests-resources.sh │ │ ├── Pods-LabelSwitch_Tests-umbrella.h │ │ ├── Pods-LabelSwitch_Tests.debug.xcconfig │ │ ├── Pods-LabelSwitch_Tests.modulemap │ │ └── Pods-LabelSwitch_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── LabelSwitch.podspec ├── LabelSwitch ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── LabelSwitch.swift │ ├── LabelSwitchBackView.swift │ ├── LabelSwitchConfig.swift │ └── LabelSwitchState.swift ├── README.md ├── _Pods.xcodeproj ├── logo ├── favicon-04.png ├── favicon-04.svg ├── logotype-a-05.png ├── logotype-a-05.svg ├── logotype-b-06.png └── logotype-b-06.svg ├── sample.gif └── sample2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/LabelSwitch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LabelSwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LabelSwitch.xcodeproj/xcshareddata/xcschemes/LabelSwitch-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch.xcodeproj/xcshareddata/xcschemes/LabelSwitch-Example.xcscheme -------------------------------------------------------------------------------- /Example/LabelSwitch.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LabelSwitch.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/LabelSwitch.xcworkspace/xcuserdata/zhu.bingyi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch.xcworkspace/xcuserdata/zhu.bingyi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/LabelSwitch/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch/AppDelegate.swift -------------------------------------------------------------------------------- /Example/LabelSwitch/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/LabelSwitch/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/LabelSwitch/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LabelSwitch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch/Info.plist -------------------------------------------------------------------------------- /Example/LabelSwitch/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch/ViewController.swift -------------------------------------------------------------------------------- /Example/LabelSwitch/fire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch/fire.jpg -------------------------------------------------------------------------------- /Example/LabelSwitch/water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/LabelSwitch/water.jpg -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LabelSwitch.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Local Podspecs/LabelSwitch.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/zhu.bingyi.xcuserdatad/xcschemes/LabelSwitch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/zhu.bingyi.xcuserdatad/xcschemes/LabelSwitch.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/zhu.bingyi.xcuserdatad/xcschemes/Pods-LabelSwitch_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/zhu.bingyi.xcuserdatad/xcschemes/Pods-LabelSwitch_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/zhu.bingyi.xcuserdatad/xcschemes/Pods-LabelSwitch_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/zhu.bingyi.xcuserdatad/xcschemes/Pods-LabelSwitch_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/zhu.bingyi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/zhu.bingyi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LabelSwitch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/LabelSwitch/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LabelSwitch/LabelSwitch-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/LabelSwitch/LabelSwitch-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LabelSwitch/LabelSwitch-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/LabelSwitch/LabelSwitch-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LabelSwitch/LabelSwitch-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/LabelSwitch/LabelSwitch-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LabelSwitch/LabelSwitch.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/LabelSwitch/LabelSwitch.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LabelSwitch/LabelSwitch.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/LabelSwitch/LabelSwitch.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Example/Pods-LabelSwitch_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Pods/Target Support Files/Pods-LabelSwitch_Tests/Pods-LabelSwitch_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/LICENSE -------------------------------------------------------------------------------- /LabelSwitch.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/LabelSwitch.podspec -------------------------------------------------------------------------------- /LabelSwitch/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LabelSwitch/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LabelSwitch/Classes/LabelSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/LabelSwitch/Classes/LabelSwitch.swift -------------------------------------------------------------------------------- /LabelSwitch/Classes/LabelSwitchBackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/LabelSwitch/Classes/LabelSwitchBackView.swift -------------------------------------------------------------------------------- /LabelSwitch/Classes/LabelSwitchConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/LabelSwitch/Classes/LabelSwitchConfig.swift -------------------------------------------------------------------------------- /LabelSwitch/Classes/LabelSwitchState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/LabelSwitch/Classes/LabelSwitchState.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /logo/favicon-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/logo/favicon-04.png -------------------------------------------------------------------------------- /logo/favicon-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/logo/favicon-04.svg -------------------------------------------------------------------------------- /logo/logotype-a-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/logo/logotype-a-05.png -------------------------------------------------------------------------------- /logo/logotype-a-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/logo/logotype-a-05.svg -------------------------------------------------------------------------------- /logo/logotype-b-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/logo/logotype-b-06.png -------------------------------------------------------------------------------- /logo/logotype-b-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/logo/logotype-b-06.svg -------------------------------------------------------------------------------- /sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/sample.gif -------------------------------------------------------------------------------- /sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cookiezby/LabelSwitch/HEAD/sample2.png --------------------------------------------------------------------------------