├── .gitignore ├── .swift-version ├── .travis.yml ├── LICENSE ├── README.md ├── SASecretCommandViewController.podspec ├── SASecretCommandViewController ├── SASecretCommandManager.swift ├── SASecretCommandView.swift └── SASecretCommandViewController.swift ├── SASecretCommandViewControllerSample ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SASecretCommandViewController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-SASecretCommandViewControllerSample │ │ ├── Info.plist │ │ ├── Pods-SASecretCommandViewControllerSample-acknowledgements.markdown │ │ ├── Pods-SASecretCommandViewControllerSample-acknowledgements.plist │ │ ├── Pods-SASecretCommandViewControllerSample-dummy.m │ │ ├── Pods-SASecretCommandViewControllerSample-frameworks.sh │ │ ├── Pods-SASecretCommandViewControllerSample-resources.sh │ │ ├── Pods-SASecretCommandViewControllerSample-umbrella.h │ │ ├── Pods-SASecretCommandViewControllerSample.debug.xcconfig │ │ ├── Pods-SASecretCommandViewControllerSample.modulemap │ │ └── Pods-SASecretCommandViewControllerSample.release.xcconfig │ │ └── SASecretCommandViewController │ │ ├── Info.plist │ │ ├── SASecretCommandViewController-dummy.m │ │ ├── SASecretCommandViewController-prefix.pch │ │ ├── SASecretCommandViewController-umbrella.h │ │ ├── SASecretCommandViewController.modulemap │ │ └── SASecretCommandViewController.xcconfig ├── SASecretCommandViewControllerSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SASecretCommandViewControllerSample.xcworkspace │ └── contents.xcworkspacedata ├── SASecretCommandViewControllerSample │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── normal.imageset │ │ │ ├── Contents.json │ │ │ ├── normal-1.jpeg │ │ │ ├── normal-2.jpeg │ │ │ └── normal.jpeg │ │ └── secret.imageset │ │ │ ├── Contents.json │ │ │ ├── secret-1.jpeg │ │ │ ├── secret-2.jpeg │ │ │ └── secret.jpeg │ ├── Info.plist │ ├── SASecretCommandViewControllerSample-Bridging-Header.h │ └── ViewController.swift └── SASecretCommandViewControllerSampleTests │ ├── Info.plist │ └── SASecretCommandViewControllerSampleTests.swift └── SampleImage └── secret.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/README.md -------------------------------------------------------------------------------- /SASecretCommandViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewController.podspec -------------------------------------------------------------------------------- /SASecretCommandViewController/SASecretCommandManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewController/SASecretCommandManager.swift -------------------------------------------------------------------------------- /SASecretCommandViewController/SASecretCommandView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewController/SASecretCommandView.swift -------------------------------------------------------------------------------- /SASecretCommandViewController/SASecretCommandViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewController/SASecretCommandViewController.swift -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Podfile -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Podfile.lock -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Local Podspecs/SASecretCommandViewController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Local Podspecs/SASecretCommandViewController.podspec.json -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Manifest.lock -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Info.plist -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-acknowledgements.markdown -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-acknowledgements.plist -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-dummy.m -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-frameworks.sh -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-resources.sh -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample-umbrella.h -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample.debug.xcconfig -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample.modulemap -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/Pods-SASecretCommandViewControllerSample/Pods-SASecretCommandViewControllerSample.release.xcconfig -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/Info.plist -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController-dummy.m -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController-prefix.pch -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController-umbrella.h -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController.modulemap -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/Pods/Target Support Files/SASecretCommandViewController/SASecretCommandViewController.xcconfig -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/AppDelegate.swift -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/normal.imageset/Contents.json -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/normal.imageset/normal-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/normal.imageset/normal-1.jpeg -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/normal.imageset/normal-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/normal.imageset/normal-2.jpeg -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/normal.imageset/normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/normal.imageset/normal.jpeg -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/secret.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/secret.imageset/Contents.json -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/secret.imageset/secret-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/secret.imageset/secret-1.jpeg -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/secret.imageset/secret-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/secret.imageset/secret-2.jpeg -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/secret.imageset/secret.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Images.xcassets/secret.imageset/secret.jpeg -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/Info.plist -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample-Bridging-Header.h -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSample/ViewController.swift -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSampleTests/Info.plist -------------------------------------------------------------------------------- /SASecretCommandViewControllerSample/SASecretCommandViewControllerSampleTests/SASecretCommandViewControllerSampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SASecretCommandViewControllerSample/SASecretCommandViewControllerSampleTests/SASecretCommandViewControllerSampleTests.swift -------------------------------------------------------------------------------- /SampleImage/secret.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SASecretCommandViewController/HEAD/SampleImage/secret.gif --------------------------------------------------------------------------------