├── .gitattributes ├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── TKSwitcherCollection.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── TKSwitcherCollection.xcscheme │ └── Target Support Files │ │ ├── Pods-TKSwitcherCollection_Example │ │ ├── Info.plist │ │ ├── Pods-TKSwitcherCollection_Example-Info.plist │ │ ├── Pods-TKSwitcherCollection_Example-acknowledgements.markdown │ │ ├── Pods-TKSwitcherCollection_Example-acknowledgements.plist │ │ ├── Pods-TKSwitcherCollection_Example-dummy.m │ │ ├── Pods-TKSwitcherCollection_Example-frameworks.sh │ │ ├── Pods-TKSwitcherCollection_Example-resources.sh │ │ ├── Pods-TKSwitcherCollection_Example-umbrella.h │ │ ├── Pods-TKSwitcherCollection_Example.debug.xcconfig │ │ ├── Pods-TKSwitcherCollection_Example.modulemap │ │ └── Pods-TKSwitcherCollection_Example.release.xcconfig │ │ ├── Pods-TKSwitcherCollection_Tests │ │ ├── Info.plist │ │ ├── Pods-TKSwitcherCollection_Tests-Info.plist │ │ ├── Pods-TKSwitcherCollection_Tests-acknowledgements.markdown │ │ ├── Pods-TKSwitcherCollection_Tests-acknowledgements.plist │ │ ├── Pods-TKSwitcherCollection_Tests-dummy.m │ │ ├── Pods-TKSwitcherCollection_Tests-frameworks.sh │ │ ├── Pods-TKSwitcherCollection_Tests-resources.sh │ │ ├── Pods-TKSwitcherCollection_Tests-umbrella.h │ │ ├── Pods-TKSwitcherCollection_Tests.debug.xcconfig │ │ ├── Pods-TKSwitcherCollection_Tests.modulemap │ │ └── Pods-TKSwitcherCollection_Tests.release.xcconfig │ │ └── TKSwitcherCollection │ │ ├── Info.plist │ │ ├── TKSwitcherCollection-Info.plist │ │ ├── TKSwitcherCollection-dummy.m │ │ ├── TKSwitcherCollection-prefix.pch │ │ ├── TKSwitcherCollection-umbrella.h │ │ ├── TKSwitcherCollection.modulemap │ │ └── TKSwitcherCollection.xcconfig ├── TKSwitcherCollection.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── TKSwitcherCollection.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── TKSwitcherCollection │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── gif.gif └── Tests │ ├── Info.plist │ └── Tests.swift ├── Images ├── exchange.gif ├── liquid.gif ├── simple.gif ├── simple2.gif └── smile.gif ├── LICENSE ├── README.md ├── TKSwitcherCollection.podspec ├── TKSwitcherCollection ├── TKBaseSwitcher.swift ├── TKExchangeSwitch.swift ├── TKLiquidSwitch.swift ├── TKSimpleSwitch.swift └── TKSmileSwitch.swift └── _Pods.xcodeproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/TKSwitcherCollection.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Local Podspecs/TKSwitcherCollection.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/TKSwitcherCollection.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/TKSwitcherCollection.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Example/Pods-TKSwitcherCollection_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/Pods-TKSwitcherCollection_Tests/Pods-TKSwitcherCollection_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TKSwitcherCollection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/TKSwitcherCollection/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Pods/Target Support Files/TKSwitcherCollection/TKSwitcherCollection.xcconfig -------------------------------------------------------------------------------- /Example/TKSwitcherCollection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TKSwitcherCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TKSwitcherCollection.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TKSwitcherCollection.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/TKSwitcherCollection/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection/AppDelegate.swift -------------------------------------------------------------------------------- /Example/TKSwitcherCollection/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TKSwitcherCollection/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/TKSwitcherCollection/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/TKSwitcherCollection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/TKSwitcherCollection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection/Info.plist -------------------------------------------------------------------------------- /Example/TKSwitcherCollection/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection/ViewController.swift -------------------------------------------------------------------------------- /Example/TKSwitcherCollection/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/TKSwitcherCollection/gif.gif -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Images/exchange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Images/exchange.gif -------------------------------------------------------------------------------- /Images/liquid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Images/liquid.gif -------------------------------------------------------------------------------- /Images/simple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Images/simple.gif -------------------------------------------------------------------------------- /Images/simple2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Images/simple2.gif -------------------------------------------------------------------------------- /Images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/Images/smile.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/README.md -------------------------------------------------------------------------------- /TKSwitcherCollection.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/TKSwitcherCollection.podspec -------------------------------------------------------------------------------- /TKSwitcherCollection/TKBaseSwitcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/TKSwitcherCollection/TKBaseSwitcher.swift -------------------------------------------------------------------------------- /TKSwitcherCollection/TKExchangeSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/TKSwitcherCollection/TKExchangeSwitch.swift -------------------------------------------------------------------------------- /TKSwitcherCollection/TKLiquidSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/TKSwitcherCollection/TKLiquidSwitch.swift -------------------------------------------------------------------------------- /TKSwitcherCollection/TKSimpleSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/TKSwitcherCollection/TKSimpleSwitch.swift -------------------------------------------------------------------------------- /TKSwitcherCollection/TKSmileSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBXark/TKSwitcherCollection/HEAD/TKSwitcherCollection/TKSmileSwitch.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------