├── .gitignore ├── Example ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-568h@2x.png │ │ ├── Default-667h@2x.png │ │ ├── Default-736h@2x.png │ │ └── Default@2x.png ├── KSScreenshotManagerExample-Info.plist ├── KSScreenshotManagerExample-Prefix.pch ├── KSScreenshotManagerExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── KSScreenshotManagerExample.xcscheme ├── MyScreenshotManager.h ├── MyScreenshotManager.m ├── MyTableViewController.h ├── MyTableViewController.m ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings └── main.m ├── KSScreenshotAction.h ├── KSScreenshotAction.m ├── KSScreenshotManager.h ├── KSScreenshotManager.m ├── KSScreenshotManager.podspec ├── LICENSE ├── README.md ├── config.json.example └── make_screenshots.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Example/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /Example/Images.xcassets/LaunchImage.launchimage/Default-736h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/Images.xcassets/LaunchImage.launchimage/Default-736h@2x.png -------------------------------------------------------------------------------- /Example/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Example/KSScreenshotManagerExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/KSScreenshotManagerExample-Info.plist -------------------------------------------------------------------------------- /Example/KSScreenshotManagerExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/KSScreenshotManagerExample-Prefix.pch -------------------------------------------------------------------------------- /Example/KSScreenshotManagerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/KSScreenshotManagerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/KSScreenshotManagerExample.xcodeproj/xcshareddata/xcschemes/KSScreenshotManagerExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/KSScreenshotManagerExample.xcodeproj/xcshareddata/xcschemes/KSScreenshotManagerExample.xcscheme -------------------------------------------------------------------------------- /Example/MyScreenshotManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/MyScreenshotManager.h -------------------------------------------------------------------------------- /Example/MyScreenshotManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/MyScreenshotManager.m -------------------------------------------------------------------------------- /Example/MyTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/MyTableViewController.h -------------------------------------------------------------------------------- /Example/MyTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/MyTableViewController.m -------------------------------------------------------------------------------- /Example/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/Example/main.m -------------------------------------------------------------------------------- /KSScreenshotAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/KSScreenshotAction.h -------------------------------------------------------------------------------- /KSScreenshotAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/KSScreenshotAction.m -------------------------------------------------------------------------------- /KSScreenshotManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/KSScreenshotManager.h -------------------------------------------------------------------------------- /KSScreenshotManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/KSScreenshotManager.m -------------------------------------------------------------------------------- /KSScreenshotManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/KSScreenshotManager.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/README.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/config.json.example -------------------------------------------------------------------------------- /make_screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/KSScreenshotManager/HEAD/make_screenshots.py --------------------------------------------------------------------------------