├── CellEmbedTableView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── huangyibiao.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── huangyibiao.xcuserdatad │ └── xcschemes │ ├── CellEmbedTableView.xcscheme │ └── xcschememanagement.plist ├── CellEmbedTableView.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── huangyibiao.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── CellEmbedTableView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HYBCommentCell.h ├── HYBCommentCell.m ├── HYBCommentModel.h ├── HYBCommentModel.m ├── HYBTestCell.h ├── HYBTestCell.m ├── HYBTestModel.h ├── HYBTestModel.m ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── CellEmbedTableViewTests ├── CellEmbedTableViewTests.m └── Info.plist ├── CellEmbedTableViewUITests ├── CellEmbedTableViewUITests.m └── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── HYBMasonryAutoCellHeight │ ├── HYBMasonryAutoCellHeight │ │ ├── UITableView+HYBCacheHeight.h │ │ ├── UITableView+HYBCacheHeight.m │ │ ├── UITableViewCell+HYBMasonryAutoCellHeight.h │ │ └── UITableViewCell+HYBMasonryAutoCellHeight.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── HYBMasonryAutoCellHeight │ │ │ ├── UITableView+HYBCacheHeight.h │ │ │ └── UITableViewCell+HYBMasonryAutoCellHeight.h │ │ └── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ └── Public │ │ ├── HYBMasonryAutoCellHeight │ │ ├── UITableView+HYBCacheHeight.h │ │ └── UITableViewCell+HYBMasonryAutoCellHeight.h │ │ └── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── huangyibiao.xcuserdatad │ │ └── xcschemes │ │ ├── HYBMasonryAutoCellHeight.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── Pods-CellEmbedTableView.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── HYBMasonryAutoCellHeight │ ├── HYBMasonryAutoCellHeight-Private.xcconfig │ ├── HYBMasonryAutoCellHeight-dummy.m │ ├── HYBMasonryAutoCellHeight-prefix.pch │ └── HYBMasonryAutoCellHeight.xcconfig │ ├── Masonry │ ├── Masonry-Private.xcconfig │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ └── Pods-CellEmbedTableView │ ├── Pods-CellEmbedTableView-acknowledgements.markdown │ ├── Pods-CellEmbedTableView-acknowledgements.plist │ ├── Pods-CellEmbedTableView-dummy.m │ ├── Pods-CellEmbedTableView-resources.sh │ ├── Pods-CellEmbedTableView.debug.xcconfig │ └── Pods-CellEmbedTableView.release.xcconfig └── README.md /CellEmbedTableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CellEmbedTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CellEmbedTableView.xcodeproj/project.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView.xcodeproj/project.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CellEmbedTableView.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/CellEmbedTableView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/CellEmbedTableView.xcscheme -------------------------------------------------------------------------------- /CellEmbedTableView.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CellEmbedTableView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CellEmbedTableView.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CellEmbedTableView.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CellEmbedTableView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/AppDelegate.h -------------------------------------------------------------------------------- /CellEmbedTableView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/AppDelegate.m -------------------------------------------------------------------------------- /CellEmbedTableView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CellEmbedTableView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CellEmbedTableView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CellEmbedTableView/HYBCommentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/HYBCommentCell.h -------------------------------------------------------------------------------- /CellEmbedTableView/HYBCommentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/HYBCommentCell.m -------------------------------------------------------------------------------- /CellEmbedTableView/HYBCommentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/HYBCommentModel.h -------------------------------------------------------------------------------- /CellEmbedTableView/HYBCommentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/HYBCommentModel.m -------------------------------------------------------------------------------- /CellEmbedTableView/HYBTestCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/HYBTestCell.h -------------------------------------------------------------------------------- /CellEmbedTableView/HYBTestCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/HYBTestCell.m -------------------------------------------------------------------------------- /CellEmbedTableView/HYBTestModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/HYBTestModel.h -------------------------------------------------------------------------------- /CellEmbedTableView/HYBTestModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/HYBTestModel.m -------------------------------------------------------------------------------- /CellEmbedTableView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/Info.plist -------------------------------------------------------------------------------- /CellEmbedTableView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/ViewController.h -------------------------------------------------------------------------------- /CellEmbedTableView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/ViewController.m -------------------------------------------------------------------------------- /CellEmbedTableView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableView/main.m -------------------------------------------------------------------------------- /CellEmbedTableViewTests/CellEmbedTableViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableViewTests/CellEmbedTableViewTests.m -------------------------------------------------------------------------------- /CellEmbedTableViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableViewTests/Info.plist -------------------------------------------------------------------------------- /CellEmbedTableViewUITests/CellEmbedTableViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableViewUITests/CellEmbedTableViewUITests.m -------------------------------------------------------------------------------- /CellEmbedTableViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/CellEmbedTableViewUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | target 'CellEmbedTableView' do 2 | 3 | pod 'HYBMasonryAutoCellHeight', '~>2.0.0' 4 | 5 | end 6 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.h -------------------------------------------------------------------------------- /Pods/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.m -------------------------------------------------------------------------------- /Pods/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.h -------------------------------------------------------------------------------- /Pods/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.m -------------------------------------------------------------------------------- /Pods/HYBMasonryAutoCellHeight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/HYBMasonryAutoCellHeight/LICENSE -------------------------------------------------------------------------------- /Pods/HYBMasonryAutoCellHeight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/HYBMasonryAutoCellHeight/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.h: -------------------------------------------------------------------------------- 1 | ../../../HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.h -------------------------------------------------------------------------------- /Pods/Headers/Private/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.h: -------------------------------------------------------------------------------- 1 | ../../../HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.h: -------------------------------------------------------------------------------- 1 | ../../../HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableView+HYBCacheHeight.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.h: -------------------------------------------------------------------------------- 1 | ../../../HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight/UITableViewCell+HYBMasonryAutoCellHeight.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/HYBMasonryAutoCellHeight.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/HYBMasonryAutoCellHeight.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/Pods-CellEmbedTableView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/Pods-CellEmbedTableView.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Pods.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Masonry/Masonry-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/Pods/Target Support Files/Pods-CellEmbedTableView/Pods-CellEmbedTableView.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/CellEmbedTableView/HEAD/README.md --------------------------------------------------------------------------------