├── .DS_Store ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE ├── Package.swift ├── README.md ├── Tests ├── LinuxMain.swift └── ZHTableViewGroupTests │ ├── XCTestManifests.swift │ └── ZHTableViewGroupTests.swift ├── ZHTableViewGroupExample ├── ZHTableViewGroupExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── ZHTableViewGroupObjc.xcscheme ├── ZHTableViewGroupExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── HiddenViewController.h │ ├── HiddenViewController.m │ ├── Info.plist │ ├── ReloadCellDataViewController.h │ ├── ReloadCellDataViewController.m │ ├── ReloadCellViewController.h │ ├── ReloadCellViewController.m │ ├── ReloadHeightViewController.h │ ├── ReloadHeightViewController.m │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── SetHeightViewController.h │ ├── SetHeightViewController.m │ ├── TableViewController.h │ ├── TableViewController.m │ ├── TableViewController.xib │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── ZHTableViewGroupObjc │ ├── Info.plist │ ├── ZHAutoConfigurationCollectionViewDelegate.h │ ├── ZHAutoConfigurationCollectionViewDelegate.m │ ├── ZHAutoConfigurationTableViewDelegate.h │ ├── ZHAutoConfigurationTableViewDelegate.m │ ├── ZHCollectionViewBaseModel.h │ ├── ZHCollectionViewBaseModel.m │ ├── ZHCollectionViewCell.h │ ├── ZHCollectionViewCell.m │ ├── ZHCollectionViewDataSource.h │ ├── ZHCollectionViewDataSource.m │ ├── ZHCollectionViewGroup.h │ ├── ZHCollectionViewGroup.m │ ├── ZHCollectionViewHeaderFooter.h │ ├── ZHCollectionViewHeaderFooter.m │ ├── ZHTableViewBaseModel.h │ ├── ZHTableViewBaseModel.m │ ├── ZHTableViewCell.h │ ├── ZHTableViewCell.m │ ├── ZHTableViewDataSource.h │ ├── ZHTableViewDataSource.m │ ├── ZHTableViewGroup.h │ ├── ZHTableViewGroup.m │ ├── ZHTableViewGroupObjc.h │ ├── ZHTableViewHeaderFooter.h │ ├── ZHTableViewHeaderFooter.m │ └── include │ ├── ZHAutoConfigurationCollectionViewDelegate.h │ ├── ZHAutoConfigurationTableViewDelegate.h │ ├── ZHCollectionViewBaseModel.h │ ├── ZHCollectionViewCell.h │ ├── ZHCollectionViewDataSource.h │ ├── ZHCollectionViewGroup.h │ ├── ZHCollectionViewHeaderFooter.h │ ├── ZHTableViewBaseModel.h │ ├── ZHTableViewCell.h │ ├── ZHTableViewDataSource.h │ ├── ZHTableViewGroup.h │ ├── ZHTableViewGroupObjc.h │ └── ZHTableViewHeaderFooter.h ├── ZHTableViewGroupObjc.podspec └── images ├── 2019-08-20-034515.png ├── 2019-08-20-035055.png ├── image-20190820115521632.png ├── image-20190820115538881.png ├── image-20190820115647037.png └── image-20190820115743952.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/README.md -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/ZHTableViewGroupTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/Tests/ZHTableViewGroupTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/ZHTableViewGroupTests/ZHTableViewGroupTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/Tests/ZHTableViewGroupTests/ZHTableViewGroupTests.swift -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample.xcodeproj/xcshareddata/xcschemes/ZHTableViewGroupObjc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample.xcodeproj/xcshareddata/xcschemes/ZHTableViewGroupObjc.xcscheme -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/AppDelegate.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/AppDelegate.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/HiddenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/HiddenViewController.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/HiddenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/HiddenViewController.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/Info.plist -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadCellDataViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadCellDataViewController.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadCellDataViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadCellDataViewController.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadCellViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadCellViewController.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadCellViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadCellViewController.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadHeightViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadHeightViewController.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadHeightViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/ReloadHeightViewController.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/SceneDelegate.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/SceneDelegate.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/SetHeightViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/SetHeightViewController.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/SetHeightViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/SetHeightViewController.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/TableViewController.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/TableViewController.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/TableViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/TableViewController.xib -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/ViewController.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/ViewController.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupExample/main.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/Info.plist -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHAutoConfigurationCollectionViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHAutoConfigurationCollectionViewDelegate.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHAutoConfigurationCollectionViewDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHAutoConfigurationCollectionViewDelegate.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHAutoConfigurationTableViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHAutoConfigurationTableViewDelegate.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHAutoConfigurationTableViewDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHAutoConfigurationTableViewDelegate.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewBaseModel.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewBaseModel.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewCell.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewCell.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewDataSource.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewDataSource.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewGroup.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewGroup.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewHeaderFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewHeaderFooter.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewHeaderFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHCollectionViewHeaderFooter.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewBaseModel.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewBaseModel.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewCell.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewCell.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewDataSource.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewDataSource.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewGroup.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewGroup.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewGroupObjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewGroupObjc.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewHeaderFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewHeaderFooter.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewHeaderFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupExample/ZHTableViewGroupObjc/ZHTableViewHeaderFooter.m -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHAutoConfigurationCollectionViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../ZHAutoConfigurationCollectionViewDelegate.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHAutoConfigurationTableViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../ZHAutoConfigurationTableViewDelegate.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHCollectionViewBaseModel.h: -------------------------------------------------------------------------------- 1 | ../ZHCollectionViewBaseModel.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../ZHCollectionViewCell.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHCollectionViewDataSource.h: -------------------------------------------------------------------------------- 1 | ../ZHCollectionViewDataSource.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHCollectionViewGroup.h: -------------------------------------------------------------------------------- 1 | ../ZHCollectionViewGroup.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHCollectionViewHeaderFooter.h: -------------------------------------------------------------------------------- 1 | ../ZHCollectionViewHeaderFooter.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHTableViewBaseModel.h: -------------------------------------------------------------------------------- 1 | ../ZHTableViewBaseModel.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../ZHTableViewCell.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHTableViewDataSource.h: -------------------------------------------------------------------------------- 1 | ../ZHTableViewDataSource.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHTableViewGroup.h: -------------------------------------------------------------------------------- 1 | ../ZHTableViewGroup.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHTableViewGroupObjc.h: -------------------------------------------------------------------------------- 1 | ../ZHTableViewGroupObjc.h -------------------------------------------------------------------------------- /ZHTableViewGroupExample/ZHTableViewGroupObjc/include/ZHTableViewHeaderFooter.h: -------------------------------------------------------------------------------- 1 | ../ZHTableViewHeaderFooter.h -------------------------------------------------------------------------------- /ZHTableViewGroupObjc.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/ZHTableViewGroupObjc.podspec -------------------------------------------------------------------------------- /images/2019-08-20-034515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/images/2019-08-20-034515.png -------------------------------------------------------------------------------- /images/2019-08-20-035055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/images/2019-08-20-035055.png -------------------------------------------------------------------------------- /images/image-20190820115521632.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/images/image-20190820115521632.png -------------------------------------------------------------------------------- /images/image-20190820115538881.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/images/image-20190820115538881.png -------------------------------------------------------------------------------- /images/image-20190820115647037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/images/image-20190820115647037.png -------------------------------------------------------------------------------- /images/image-20190820115743952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josercc/ZHTableViewGroup/HEAD/images/image-20190820115743952.png --------------------------------------------------------------------------------