├── .gitignore ├── LICENSE ├── Podfile ├── README.md ├── README_EN.md ├── TYSnapshotScroll.podspec ├── TYSnapshotScroll ├── TYSnapshotAuxiliary │ ├── TYSnapshotAuxiliary.h │ ├── TYSnapshotAuxiliaryCache.h │ ├── TYSnapshotAuxiliaryCache.m │ ├── TYSnapshotAuxiliaryPDFTool.h │ ├── TYSnapshotAuxiliaryPDFTool.m │ ├── TYSpellImage.h │ ├── TYSpellImage.m │ ├── UIScrollView+TYSnapshotAuxiliary.h │ ├── UIScrollView+TYSnapshotAuxiliary.m │ ├── WKWebView+TYSnapshotAuxiliary.h │ └── WKWebView+TYSnapshotAuxiliary.m ├── TYSnapshotManager.h ├── TYSnapshotManager.m ├── TYSnapshotScroll.h ├── TYSnapshotScroll.m ├── Tools │ ├── TYGCDTools.h │ ├── TYGeneral.h │ ├── UIImage+TYSnapshot.h │ ├── UIImage+TYSnapshot.m │ ├── UIViewController+TYSnapshot.h │ └── UIViewController+TYSnapshot.m ├── UIScrollView+TYSnapshot.h ├── UIScrollView+TYSnapshot.m ├── UIScrollView+TYSplice.h ├── UIScrollView+TYSplice.m ├── UITextView+TYSnapshot.h ├── UITextView+TYSnapshot.m ├── UIView+TYSnapshot.h ├── UIView+TYSnapshot.m ├── WKWebView+TYSnapshot.h └── WKWebView+TYSnapshot.m ├── TYSnapshotScrollDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── TYSnapshotScrollDemo.xcworkspace └── contents.xcworkspacedata ├── TYSnapshotScrollDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIconiPhoneApp_60pt@2x.png │ │ ├── AppIconiPhoneApp_60pt@3x.png │ │ ├── AppIconiPhoneNotification_20pt@2x.png │ │ ├── AppIconiPhoneNotification_20pt@3x.png │ │ ├── AppIconiPhoneSpootlight5_29pt@2x.png │ │ ├── AppIconiPhoneSpootlight5_29pt@3x.png │ │ ├── AppIconiPhoneSpootlight7_40pt@2x.png │ │ ├── AppIconiPhoneSpootlight7_40pt@3x.png │ │ ├── AppIconstore_1024pt.png │ │ └── Contents.json │ ├── Contents.json │ ├── screenshot.imageset │ │ ├── Contents.json │ │ └── screenshot@2x.png │ └── screenshotLong.imageset │ │ ├── Contents.json │ │ └── screenshotLong@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomView │ ├── TYCustomCollectionViewCell.h │ ├── TYCustomCollectionViewCell.m │ ├── TYTextViewInTableViewCell.h │ ├── TYTextViewInTableViewCell.m │ └── TYTextViewInTableViewCell.xib ├── Info.plist ├── SubViewControllers │ ├── TYBaseVc.h │ ├── TYBaseVc.m │ ├── TYCollectionViewVc.h │ ├── TYCollectionViewVc.m │ ├── TYLayoutScrollViewVc.h │ ├── TYLayoutScrollViewVc.m │ ├── TYPDFWKWebViewVc.h │ ├── TYPDFWKWebViewVc.m │ ├── TYPreviewVc.h │ ├── TYPreviewVc.m │ ├── TYScrollEmbedVc.h │ ├── TYScrollEmbedVc.m │ ├── TYScrollViewVc.h │ ├── TYScrollViewVc.m │ ├── TYTableViewVc.h │ ├── TYTableViewVc.m │ ├── TYTextViewInTableVc.h │ ├── TYTextViewInTableVc.m │ ├── TYTextViewVc.h │ ├── TYTextViewVc.m │ ├── TYVFLWKWebViewVc.h │ ├── TYVFLWKWebViewVc.m │ ├── TYViewVc.h │ ├── TYViewVc.m │ ├── TYWKWebViewVc.h │ └── TYWKWebViewVc.m ├── TYBaseViewController.h ├── TYBaseViewController.m ├── TYLongViewController.h ├── TYLongViewController.m └── main.m ├── TYSnapshotScrollDemoTests ├── Info.plist └── TYSnapshotScrollDemoTests.m └── TYSnapshotScrollDemoUITests ├── Info.plist └── TYSnapshotScrollDemoUITests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/README_EN.md -------------------------------------------------------------------------------- /TYSnapshotScroll.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll.podspec -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliary.h -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliaryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliaryCache.h -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliaryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliaryCache.m -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliaryPDFTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliaryPDFTool.h -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliaryPDFTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/TYSnapshotAuxiliaryPDFTool.m -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/TYSpellImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/TYSpellImage.h -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/TYSpellImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/TYSpellImage.m -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/UIScrollView+TYSnapshotAuxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/UIScrollView+TYSnapshotAuxiliary.h -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/UIScrollView+TYSnapshotAuxiliary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/UIScrollView+TYSnapshotAuxiliary.m -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/WKWebView+TYSnapshotAuxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/WKWebView+TYSnapshotAuxiliary.h -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotAuxiliary/WKWebView+TYSnapshotAuxiliary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotAuxiliary/WKWebView+TYSnapshotAuxiliary.m -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotManager.h -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotManager.m -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotScroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotScroll.h -------------------------------------------------------------------------------- /TYSnapshotScroll/TYSnapshotScroll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/TYSnapshotScroll.m -------------------------------------------------------------------------------- /TYSnapshotScroll/Tools/TYGCDTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/Tools/TYGCDTools.h -------------------------------------------------------------------------------- /TYSnapshotScroll/Tools/TYGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/Tools/TYGeneral.h -------------------------------------------------------------------------------- /TYSnapshotScroll/Tools/UIImage+TYSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/Tools/UIImage+TYSnapshot.h -------------------------------------------------------------------------------- /TYSnapshotScroll/Tools/UIImage+TYSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/Tools/UIImage+TYSnapshot.m -------------------------------------------------------------------------------- /TYSnapshotScroll/Tools/UIViewController+TYSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/Tools/UIViewController+TYSnapshot.h -------------------------------------------------------------------------------- /TYSnapshotScroll/Tools/UIViewController+TYSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/Tools/UIViewController+TYSnapshot.m -------------------------------------------------------------------------------- /TYSnapshotScroll/UIScrollView+TYSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/UIScrollView+TYSnapshot.h -------------------------------------------------------------------------------- /TYSnapshotScroll/UIScrollView+TYSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/UIScrollView+TYSnapshot.m -------------------------------------------------------------------------------- /TYSnapshotScroll/UIScrollView+TYSplice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/UIScrollView+TYSplice.h -------------------------------------------------------------------------------- /TYSnapshotScroll/UIScrollView+TYSplice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/UIScrollView+TYSplice.m -------------------------------------------------------------------------------- /TYSnapshotScroll/UITextView+TYSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/UITextView+TYSnapshot.h -------------------------------------------------------------------------------- /TYSnapshotScroll/UITextView+TYSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/UITextView+TYSnapshot.m -------------------------------------------------------------------------------- /TYSnapshotScroll/UIView+TYSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/UIView+TYSnapshot.h -------------------------------------------------------------------------------- /TYSnapshotScroll/UIView+TYSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/UIView+TYSnapshot.m -------------------------------------------------------------------------------- /TYSnapshotScroll/WKWebView+TYSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/WKWebView+TYSnapshot.h -------------------------------------------------------------------------------- /TYSnapshotScroll/WKWebView+TYSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScroll/WKWebView+TYSnapshot.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TYSnapshotScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TYSnapshotScrollDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/AppDelegate.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/AppDelegate.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneApp_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneApp_60pt@2x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneApp_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneApp_60pt@3x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneNotification_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneNotification_20pt@2x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneNotification_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneNotification_20pt@3x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneSpootlight5_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneSpootlight5_29pt@2x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneSpootlight5_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneSpootlight5_29pt@3x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneSpootlight7_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneSpootlight7_40pt@2x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneSpootlight7_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconiPhoneSpootlight7_40pt@3x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconstore_1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/AppIconstore_1024pt.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/screenshot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/screenshot.imageset/Contents.json -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/screenshot.imageset/screenshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/screenshot.imageset/screenshot@2x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/screenshotLong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/screenshotLong.imageset/Contents.json -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Assets.xcassets/screenshotLong.imageset/screenshotLong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Assets.xcassets/screenshotLong.imageset/screenshotLong@2x.png -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/CustomView/TYCustomCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/CustomView/TYCustomCollectionViewCell.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/CustomView/TYCustomCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/CustomView/TYCustomCollectionViewCell.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/CustomView/TYTextViewInTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/CustomView/TYTextViewInTableViewCell.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/CustomView/TYTextViewInTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/CustomView/TYTextViewInTableViewCell.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/CustomView/TYTextViewInTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/CustomView/TYTextViewInTableViewCell.xib -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/Info.plist -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYBaseVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYBaseVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYBaseVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYBaseVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYCollectionViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYCollectionViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYCollectionViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYCollectionViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYLayoutScrollViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYLayoutScrollViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYLayoutScrollViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYLayoutScrollViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYPDFWKWebViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYPDFWKWebViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYPDFWKWebViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYPDFWKWebViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYPreviewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYPreviewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYPreviewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYPreviewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYScrollEmbedVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYScrollEmbedVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYScrollEmbedVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYScrollEmbedVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYScrollViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYScrollViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYScrollViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYScrollViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYTableViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYTableViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYTableViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYTableViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYTextViewInTableVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYTextViewInTableVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYTextViewInTableVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYTextViewInTableVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYTextViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYTextViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYTextViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYTextViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYVFLWKWebViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYVFLWKWebViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYVFLWKWebViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYVFLWKWebViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYWKWebViewVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYWKWebViewVc.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/SubViewControllers/TYWKWebViewVc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/SubViewControllers/TYWKWebViewVc.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/TYBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/TYBaseViewController.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/TYBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/TYBaseViewController.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/TYLongViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/TYLongViewController.h -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/TYLongViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/TYLongViewController.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemo/main.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemoTests/Info.plist -------------------------------------------------------------------------------- /TYSnapshotScrollDemoTests/TYSnapshotScrollDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemoTests/TYSnapshotScrollDemoTests.m -------------------------------------------------------------------------------- /TYSnapshotScrollDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemoUITests/Info.plist -------------------------------------------------------------------------------- /TYSnapshotScrollDemoUITests/TYSnapshotScrollDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyReet/TYSnapshotScroll/HEAD/TYSnapshotScrollDemoUITests/TYSnapshotScrollDemoUITests.m --------------------------------------------------------------------------------