├── .gitignore ├── IMG_2047.JPG ├── README.md ├── UITableViewSnapshotTest.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── UITableViewSnapshotTest ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── Credit_logo.imageset │ │ ├── Contents.json │ │ └── Credit_logo@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── UITableViewSnapshot │ ├── UIImage+ZFImageFromArrayUtils.h │ ├── UIImage+ZFImageFromArrayUtils.m │ ├── UITableView+ZFTableViewSnapshot.h │ └── UITableView+ZFTableViewSnapshot.m ├── ViewController.h ├── ViewController.m └── main.m ├── ZFTableViewSnapshot.podspec └── ZFTableViewSnapshot ├── 1.0.0 └── ZFTableViewSnapshot.podspec ├── 1.0.1 └── ZFTableViewSnapshot.podspec └── 1.0.2 └── ZFTableViewSnapshot.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/.gitignore -------------------------------------------------------------------------------- /IMG_2047.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/IMG_2047.JPG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/README.md -------------------------------------------------------------------------------- /UITableViewSnapshotTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UITableViewSnapshotTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UITableViewSnapshotTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/AppDelegate.h -------------------------------------------------------------------------------- /UITableViewSnapshotTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/AppDelegate.m -------------------------------------------------------------------------------- /UITableViewSnapshotTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UITableViewSnapshotTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /UITableViewSnapshotTest/Assets.xcassets/Credit_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/Assets.xcassets/Credit_logo.imageset/Contents.json -------------------------------------------------------------------------------- /UITableViewSnapshotTest/Assets.xcassets/Credit_logo.imageset/Credit_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/Assets.xcassets/Credit_logo.imageset/Credit_logo@2x.png -------------------------------------------------------------------------------- /UITableViewSnapshotTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UITableViewSnapshotTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UITableViewSnapshotTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/Info.plist -------------------------------------------------------------------------------- /UITableViewSnapshotTest/UITableViewSnapshot/UIImage+ZFImageFromArrayUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/UITableViewSnapshot/UIImage+ZFImageFromArrayUtils.h -------------------------------------------------------------------------------- /UITableViewSnapshotTest/UITableViewSnapshot/UIImage+ZFImageFromArrayUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/UITableViewSnapshot/UIImage+ZFImageFromArrayUtils.m -------------------------------------------------------------------------------- /UITableViewSnapshotTest/UITableViewSnapshot/UITableView+ZFTableViewSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/UITableViewSnapshot/UITableView+ZFTableViewSnapshot.h -------------------------------------------------------------------------------- /UITableViewSnapshotTest/UITableViewSnapshot/UITableView+ZFTableViewSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/UITableViewSnapshot/UITableView+ZFTableViewSnapshot.m -------------------------------------------------------------------------------- /UITableViewSnapshotTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/ViewController.h -------------------------------------------------------------------------------- /UITableViewSnapshotTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/ViewController.m -------------------------------------------------------------------------------- /UITableViewSnapshotTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/UITableViewSnapshotTest/main.m -------------------------------------------------------------------------------- /ZFTableViewSnapshot.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/ZFTableViewSnapshot.podspec -------------------------------------------------------------------------------- /ZFTableViewSnapshot/1.0.0/ZFTableViewSnapshot.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/ZFTableViewSnapshot/1.0.0/ZFTableViewSnapshot.podspec -------------------------------------------------------------------------------- /ZFTableViewSnapshot/1.0.1/ZFTableViewSnapshot.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/ZFTableViewSnapshot/1.0.1/ZFTableViewSnapshot.podspec -------------------------------------------------------------------------------- /ZFTableViewSnapshot/1.0.2/ZFTableViewSnapshot.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZFBest/UITableViewSnapshot/HEAD/ZFTableViewSnapshot/1.0.2/ZFTableViewSnapshot.podspec --------------------------------------------------------------------------------