├── .gitignore ├── .travis.yml ├── ChameleonSwift.podspec ├── ChameleonSwift.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── ChameleonSwift ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── ChameleonSwift.swift ├── ChameleonTests ├── ChameleonTests.swift └── Info.plist ├── ChameleonUITests ├── ChameleonUITests.swift └── Info.plist ├── Example ├── ChameleonSwift.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ChameleonSwift-Example.xcscheme ├── ChameleonSwift.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ChameleonSwift │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Datas.swift │ ├── FirstViewController.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── SecondViewController.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── ChameleonSwift.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── ChameleonSwift │ ├── ChameleonSwift-Info.plist │ ├── ChameleonSwift-dummy.m │ ├── ChameleonSwift-prefix.pch │ ├── ChameleonSwift-umbrella.h │ ├── ChameleonSwift.debug.xcconfig │ ├── ChameleonSwift.modulemap │ ├── ChameleonSwift.release.xcconfig │ ├── ChameleonSwift.xcconfig │ └── Info.plist │ └── Pods-ChameleonSwift_Example │ ├── Info.plist │ ├── Pods-ChameleonSwift_Example-Info.plist │ ├── Pods-ChameleonSwift_Example-acknowledgements.markdown │ ├── Pods-ChameleonSwift_Example-acknowledgements.plist │ ├── Pods-ChameleonSwift_Example-dummy.m │ ├── Pods-ChameleonSwift_Example-frameworks.sh │ ├── Pods-ChameleonSwift_Example-resources.sh │ ├── Pods-ChameleonSwift_Example-umbrella.h │ ├── Pods-ChameleonSwift_Example.debug.xcconfig │ ├── Pods-ChameleonSwift_Example.modulemap │ └── Pods-ChameleonSwift_Example.release.xcconfig ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChameleonSwift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonSwift.podspec -------------------------------------------------------------------------------- /ChameleonSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChameleonSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChameleonSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ChameleonSwift/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChameleonSwift/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChameleonSwift/Classes/ChameleonSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonSwift/Classes/ChameleonSwift.swift -------------------------------------------------------------------------------- /ChameleonTests/ChameleonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonTests/ChameleonTests.swift -------------------------------------------------------------------------------- /ChameleonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonTests/Info.plist -------------------------------------------------------------------------------- /ChameleonUITests/ChameleonUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonUITests/ChameleonUITests.swift -------------------------------------------------------------------------------- /ChameleonUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/ChameleonUITests/Info.plist -------------------------------------------------------------------------------- /Example/ChameleonSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ChameleonSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ChameleonSwift.xcodeproj/xcshareddata/xcschemes/ChameleonSwift-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift.xcodeproj/xcshareddata/xcschemes/ChameleonSwift-Example.xcscheme -------------------------------------------------------------------------------- /Example/ChameleonSwift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ChameleonSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ChameleonSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ChameleonSwift/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ChameleonSwift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ChameleonSwift/Datas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/Datas.swift -------------------------------------------------------------------------------- /Example/ChameleonSwift/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/FirstViewController.swift -------------------------------------------------------------------------------- /Example/ChameleonSwift/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ChameleonSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/Info.plist -------------------------------------------------------------------------------- /Example/ChameleonSwift/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/SecondViewController.swift -------------------------------------------------------------------------------- /Example/ChameleonSwift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/ChameleonSwift/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ChameleonSwift.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Local Podspecs/ChameleonSwift.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/ChameleonSwift.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ChameleonSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/ChameleonSwift/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/Example/Pods/Target Support Files/Pods-ChameleonSwift_Example/Pods-ChameleonSwift_Example.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbozhb/ChameleonSwift/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------