├── HYBSnapkitAutoCellHeight.podspec ├── HYBSnapkitAutoCellHeight ├── UITableView+CacheCellHeight.swift └── UITableViewCell+AutoCellHeight.swift ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── huangyibiao.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-demo.xcscheme │ │ ├── SnapKit.xcscheme │ │ └── xcschememanagement.plist ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintRelation.swift │ │ ├── Debugging.swift │ │ ├── EdgeInsets.swift │ │ ├── LayoutConstraint.swift │ │ ├── SnapKit.swift │ │ ├── View+SnapKit.swift │ │ └── ViewController+SnapKit.swift └── Target Support Files │ ├── Pods-demo │ ├── Info.plist │ ├── Pods-demo-acknowledgements.markdown │ ├── Pods-demo-acknowledgements.plist │ ├── Pods-demo-dummy.m │ ├── Pods-demo-frameworks.sh │ ├── Pods-demo-resources.sh │ ├── Pods-demo-umbrella.h │ ├── Pods-demo.debug.xcconfig │ ├── Pods-demo.modulemap │ └── Pods-demo.release.xcconfig │ └── SnapKit │ ├── Info.plist │ ├── SnapKit-dummy.m │ ├── SnapKit-prefix.pch │ ├── SnapKit-umbrella.h │ ├── SnapKit.modulemap │ └── SnapKit.xcconfig ├── README.md ├── demo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── huangyibiao.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── huangyibiao.xcuserdatad │ └── xcschemes │ ├── demo.xcscheme │ └── xcschememanagement.plist ├── demo.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── huangyibiao.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── demo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TestCell.swift ├── TestModel.swift ├── ViewController.swift └── head.png ├── demoTests ├── Info.plist └── demoTests.swift ├── demoUITests ├── Info.plist └── demoUITests.swift └── snapkitcellheight.gif /HYBSnapkitAutoCellHeight.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/HYBSnapkitAutoCellHeight.podspec -------------------------------------------------------------------------------- /HYBSnapkitAutoCellHeight/UITableView+CacheCellHeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/HYBSnapkitAutoCellHeight/UITableView+CacheCellHeight.swift -------------------------------------------------------------------------------- /HYBSnapkitAutoCellHeight/UITableViewCell+AutoCellHeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/HYBSnapkitAutoCellHeight/UITableViewCell+AutoCellHeight.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/Pods-demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/Pods-demo.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/SnapKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/SnapKit.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/EdgeInsets.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/SnapKit.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/View+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/View+SnapKit.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ViewController+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/SnapKit/Source/ViewController+SnapKit.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-demo/Pods-demo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/Pods-demo/Pods-demo.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/SnapKit/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/SnapKit/SnapKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/Pods/Target Support Files/SnapKit/SnapKit.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/README.md -------------------------------------------------------------------------------- /demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demo.xcodeproj/project.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo.xcodeproj/project.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /demo.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/demo.xcscheme -------------------------------------------------------------------------------- /demo.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /demo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demo.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /demo.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/AppDelegate.swift -------------------------------------------------------------------------------- /demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/Info.plist -------------------------------------------------------------------------------- /demo/TestCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/TestCell.swift -------------------------------------------------------------------------------- /demo/TestModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/TestModel.swift -------------------------------------------------------------------------------- /demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/ViewController.swift -------------------------------------------------------------------------------- /demo/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demo/head.png -------------------------------------------------------------------------------- /demoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demoTests/Info.plist -------------------------------------------------------------------------------- /demoTests/demoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demoTests/demoTests.swift -------------------------------------------------------------------------------- /demoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demoUITests/Info.plist -------------------------------------------------------------------------------- /demoUITests/demoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/demoUITests/demoUITests.swift -------------------------------------------------------------------------------- /snapkitcellheight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/HYBSnapkitAutoCellHeight/HEAD/snapkitcellheight.gif --------------------------------------------------------------------------------