├── .DS_Store ├── README.md └── TableViewCellAutoCalHeight ├── .DS_Store ├── Podfile ├── TableViewCellAutoCalHeight.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── huangping.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── huangping.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── TableViewCellAutoCalHeight ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HPMasonryAutoCollectionViewCellHeight │ ├── UICollectionView+HPCacheHeight.h │ ├── UICollectionView+HPCacheHeight.m │ ├── UICollectionViewCell+HPMasonryAutoCellHeight.h │ └── UICollectionViewCell+HPMasonryAutoCellHeight.m ├── HYBMasonryAutoCellHeight │ ├── UITableView+HYBCacheHeight.h │ ├── UITableView+HYBCacheHeight.m │ ├── UITableViewCell+HYBMasonryAutoCellHeight.h │ └── UITableViewCell+HYBMasonryAutoCellHeight.m ├── Info.plist ├── appdelegate │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── SceneDelegate.h │ └── SceneDelegate.m ├── main.m ├── screen │ ├── collectionview.png │ └── tableview.png ├── vc │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── HomeViewController.h │ ├── HomeViewController.m │ ├── HomeViewController.xib │ ├── TableInfoViewController.h │ └── TableInfoViewController.m └── view │ ├── CollectionReusableHeadView.h │ ├── CollectionReusableHeadView.m │ ├── InfoCollectionViewCell.h │ ├── InfoCollectionViewCell.m │ ├── InfoCollectionViewCell.xib │ ├── InfoTableViewCell.h │ ├── InfoTableViewCell.m │ └── InfoTableViewCell.xib ├── TableViewCellAutoCalHeightTests ├── Info.plist └── TableViewCellAutoCalHeightTests.m └── TableViewCellAutoCalHeightUITests ├── Info.plist └── TableViewCellAutoCalHeightUITests.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/README.md -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/.DS_Store -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/Podfile -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/project.xcworkspace/xcuserdata/huangping.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/project.xcworkspace/xcuserdata/huangping.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/xcuserdata/huangping.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight.xcodeproj/xcuserdata/huangping.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HPMasonryAutoCollectionViewCellHeight/UICollectionView+HPCacheHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HPMasonryAutoCollectionViewCellHeight/UICollectionView+HPCacheHeight.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HPMasonryAutoCollectionViewCellHeight/UICollectionView+HPCacheHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HPMasonryAutoCollectionViewCellHeight/UICollectionView+HPCacheHeight.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HPMasonryAutoCollectionViewCellHeight/UICollectionViewCell+HPMasonryAutoCellHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HPMasonryAutoCollectionViewCellHeight/UICollectionViewCell+HPMasonryAutoCellHeight.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HPMasonryAutoCollectionViewCellHeight/UICollectionViewCell+HPMasonryAutoCellHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HPMasonryAutoCollectionViewCellHeight/UICollectionViewCell+HPMasonryAutoCellHeight.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/Info.plist -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/appdelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/appdelegate/AppDelegate.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/appdelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/appdelegate/AppDelegate.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/appdelegate/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/appdelegate/SceneDelegate.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/appdelegate/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/appdelegate/SceneDelegate.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/main.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/screen/collectionview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/screen/collectionview.png -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/screen/tableview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/screen/tableview.png -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/CollectionViewController.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/CollectionViewController.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/HomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/HomeViewController.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/HomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/HomeViewController.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/HomeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/HomeViewController.xib -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/TableInfoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/TableInfoViewController.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/TableInfoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/vc/TableInfoViewController.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/CollectionReusableHeadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/CollectionReusableHeadView.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/CollectionReusableHeadView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/CollectionReusableHeadView.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoCollectionViewCell.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoCollectionViewCell.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoCollectionViewCell.xib -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoTableViewCell.h -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoTableViewCell.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeight/view/InfoTableViewCell.xib -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeightTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeightTests/Info.plist -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeightTests/TableViewCellAutoCalHeightTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeightTests/TableViewCellAutoCalHeightTests.m -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeightUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeightUITests/Info.plist -------------------------------------------------------------------------------- /TableViewCellAutoCalHeight/TableViewCellAutoCalHeightUITests/TableViewCellAutoCalHeightUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenshangjimiaoZG/TableViewCellAutoCalHeight_XibOrCode/HEAD/TableViewCellAutoCalHeight/TableViewCellAutoCalHeightUITests/TableViewCellAutoCalHeightUITests.m --------------------------------------------------------------------------------