├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── SnapshotKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SnapshotKit-Example.xcscheme ├── SnapshotKit.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SnapshotKit │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── RoundedViewTester │ │ └── RoundedViewTesterViewController.swift │ ├── ScrollViewTester │ │ ├── UIScrollViewTesterViewController.swift │ │ └── xiao_yao_you.txt │ ├── ShotImagePreview │ │ ├── ShotImagePreviewController.swift │ │ └── ShotImagePreviewInterface.swift │ ├── ViewController.swift │ └── WebViewTester │ │ └── WKWebViewTesterViewController.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Package.swift ├── README.md ├── SnapshotKit.podspec ├── SnapshotKit ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── SnapshotKitProtocol.swift │ ├── UICollectionView+Snapshot.swift │ ├── UIScrollView+Snapshot.swift │ ├── UITableView+Snapshot.swift │ ├── UIView+Snapshot.swift │ ├── UIWindow+Snapshot.swift │ ├── WKWebView+Snapshot.swift │ └── WebViewPrintPageRenderer.swift ├── _Pods.xcodeproj └── fastlane └── Fastfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/SnapshotKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SnapshotKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SnapshotKit.xcodeproj/xcshareddata/xcschemes/SnapshotKit-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit.xcodeproj/xcshareddata/xcschemes/SnapshotKit-Example.xcscheme -------------------------------------------------------------------------------- /Example/SnapshotKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SnapshotKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SnapshotKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SnapshotKit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SnapshotKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SnapshotKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SnapshotKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/Info.plist -------------------------------------------------------------------------------- /Example/SnapshotKit/RoundedViewTester/RoundedViewTesterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/RoundedViewTester/RoundedViewTesterViewController.swift -------------------------------------------------------------------------------- /Example/SnapshotKit/ScrollViewTester/UIScrollViewTesterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/ScrollViewTester/UIScrollViewTesterViewController.swift -------------------------------------------------------------------------------- /Example/SnapshotKit/ScrollViewTester/xiao_yao_you.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/ScrollViewTester/xiao_yao_you.txt -------------------------------------------------------------------------------- /Example/SnapshotKit/ShotImagePreview/ShotImagePreviewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/ShotImagePreview/ShotImagePreviewController.swift -------------------------------------------------------------------------------- /Example/SnapshotKit/ShotImagePreview/ShotImagePreviewInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/ShotImagePreview/ShotImagePreviewInterface.swift -------------------------------------------------------------------------------- /Example/SnapshotKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/ViewController.swift -------------------------------------------------------------------------------- /Example/SnapshotKit/WebViewTester/WKWebViewTesterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/SnapshotKit/WebViewTester/WKWebViewTesterViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/README.md -------------------------------------------------------------------------------- /SnapshotKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit.podspec -------------------------------------------------------------------------------- /SnapshotKit/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SnapshotKit/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SnapshotKit/Classes/SnapshotKitProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit/Classes/SnapshotKitProtocol.swift -------------------------------------------------------------------------------- /SnapshotKit/Classes/UICollectionView+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit/Classes/UICollectionView+Snapshot.swift -------------------------------------------------------------------------------- /SnapshotKit/Classes/UIScrollView+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit/Classes/UIScrollView+Snapshot.swift -------------------------------------------------------------------------------- /SnapshotKit/Classes/UITableView+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit/Classes/UITableView+Snapshot.swift -------------------------------------------------------------------------------- /SnapshotKit/Classes/UIView+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit/Classes/UIView+Snapshot.swift -------------------------------------------------------------------------------- /SnapshotKit/Classes/UIWindow+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit/Classes/UIWindow+Snapshot.swift -------------------------------------------------------------------------------- /SnapshotKit/Classes/WKWebView+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit/Classes/WKWebView+Snapshot.swift -------------------------------------------------------------------------------- /SnapshotKit/Classes/WebViewPrintPageRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/SnapshotKit/Classes/WebViewPrintPageRenderer.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/SnapshotKit/HEAD/fastlane/Fastfile --------------------------------------------------------------------------------