├── 1.gif ├── 1的副本.gif ├── README.md ├── TableViewCell展开.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── hbzq.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── hbzq.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── TableViewCell展开 ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── Image.imageset │ │ ├── Contents.json │ │ └── conditionalCell_normal2@2x.png │ └── ImageSelect.imageset │ │ ├── Contents.json │ │ └── conditionalCell_selected2@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Model │ ├── HBMenuItemModel.h │ ├── HBMenuItemModel.m │ ├── HBTestModel.h │ └── HBTestModel.m ├── TableViewFrameWork │ ├── HBTableViewCell.h │ ├── HBTableViewCell.m │ ├── HBTableViewDataSource.h │ ├── HBTableViewDataSource.m │ ├── HBTableViewSectionViewModel.h │ ├── HBTableViewSectionViewModel.m │ ├── NSObject+HBTableDataModel.h │ └── NSObject+HBTableDataModel.m ├── View │ ├── HBExpandableCellButton.h │ ├── HBExpandableCellButton.m │ ├── HBExtensiveCellContainerView.h │ ├── HBExtensiveCellContainerView.m │ ├── HBTestModelTableViewCell.h │ ├── HBTestModelTableViewCell.m │ ├── HBTestModelTableViewCell.xib │ ├── UIView+HBPageExtend.h │ └── UIView+HBPageExtend.m ├── ViewController.h ├── ViewController.m └── main.m └── TableViewCell展开Tests ├── Info.plist └── TableViewCell__Tests.m /1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/1.gif -------------------------------------------------------------------------------- /1的副本.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/1的副本.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/README.md -------------------------------------------------------------------------------- /TableViewCell展开.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TableViewCell展开.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TableViewCell展开.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TableViewCell展开.xcodeproj/project.xcworkspace/xcuserdata/hbzq.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开.xcodeproj/project.xcworkspace/xcuserdata/hbzq.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TableViewCell展开.xcodeproj/xcuserdata/hbzq.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开.xcodeproj/xcuserdata/hbzq.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TableViewCell展开.xcodeproj/xcuserdata/hbzq.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开.xcodeproj/xcuserdata/hbzq.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TableViewCell展开/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/AppDelegate.h -------------------------------------------------------------------------------- /TableViewCell展开/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/AppDelegate.m -------------------------------------------------------------------------------- /TableViewCell展开/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TableViewCell展开/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TableViewCell展开/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /TableViewCell展开/Assets.xcassets/Image.imageset/conditionalCell_normal2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Assets.xcassets/Image.imageset/conditionalCell_normal2@2x.png -------------------------------------------------------------------------------- /TableViewCell展开/Assets.xcassets/ImageSelect.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Assets.xcassets/ImageSelect.imageset/Contents.json -------------------------------------------------------------------------------- /TableViewCell展开/Assets.xcassets/ImageSelect.imageset/conditionalCell_selected2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Assets.xcassets/ImageSelect.imageset/conditionalCell_selected2@2x.png -------------------------------------------------------------------------------- /TableViewCell展开/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TableViewCell展开/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TableViewCell展开/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Info.plist -------------------------------------------------------------------------------- /TableViewCell展开/Model/HBMenuItemModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Model/HBMenuItemModel.h -------------------------------------------------------------------------------- /TableViewCell展开/Model/HBMenuItemModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Model/HBMenuItemModel.m -------------------------------------------------------------------------------- /TableViewCell展开/Model/HBTestModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Model/HBTestModel.h -------------------------------------------------------------------------------- /TableViewCell展开/Model/HBTestModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/Model/HBTestModel.m -------------------------------------------------------------------------------- /TableViewCell展开/TableViewFrameWork/HBTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/TableViewFrameWork/HBTableViewCell.h -------------------------------------------------------------------------------- /TableViewCell展开/TableViewFrameWork/HBTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/TableViewFrameWork/HBTableViewCell.m -------------------------------------------------------------------------------- /TableViewCell展开/TableViewFrameWork/HBTableViewDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/TableViewFrameWork/HBTableViewDataSource.h -------------------------------------------------------------------------------- /TableViewCell展开/TableViewFrameWork/HBTableViewDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/TableViewFrameWork/HBTableViewDataSource.m -------------------------------------------------------------------------------- /TableViewCell展开/TableViewFrameWork/HBTableViewSectionViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/TableViewFrameWork/HBTableViewSectionViewModel.h -------------------------------------------------------------------------------- /TableViewCell展开/TableViewFrameWork/HBTableViewSectionViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/TableViewFrameWork/HBTableViewSectionViewModel.m -------------------------------------------------------------------------------- /TableViewCell展开/TableViewFrameWork/NSObject+HBTableDataModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/TableViewFrameWork/NSObject+HBTableDataModel.h -------------------------------------------------------------------------------- /TableViewCell展开/TableViewFrameWork/NSObject+HBTableDataModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/TableViewFrameWork/NSObject+HBTableDataModel.m -------------------------------------------------------------------------------- /TableViewCell展开/View/HBExpandableCellButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/HBExpandableCellButton.h -------------------------------------------------------------------------------- /TableViewCell展开/View/HBExpandableCellButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/HBExpandableCellButton.m -------------------------------------------------------------------------------- /TableViewCell展开/View/HBExtensiveCellContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/HBExtensiveCellContainerView.h -------------------------------------------------------------------------------- /TableViewCell展开/View/HBExtensiveCellContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/HBExtensiveCellContainerView.m -------------------------------------------------------------------------------- /TableViewCell展开/View/HBTestModelTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/HBTestModelTableViewCell.h -------------------------------------------------------------------------------- /TableViewCell展开/View/HBTestModelTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/HBTestModelTableViewCell.m -------------------------------------------------------------------------------- /TableViewCell展开/View/HBTestModelTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/HBTestModelTableViewCell.xib -------------------------------------------------------------------------------- /TableViewCell展开/View/UIView+HBPageExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/UIView+HBPageExtend.h -------------------------------------------------------------------------------- /TableViewCell展开/View/UIView+HBPageExtend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/View/UIView+HBPageExtend.m -------------------------------------------------------------------------------- /TableViewCell展开/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/ViewController.h -------------------------------------------------------------------------------- /TableViewCell展开/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/ViewController.m -------------------------------------------------------------------------------- /TableViewCell展开/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开/main.m -------------------------------------------------------------------------------- /TableViewCell展开Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开Tests/Info.plist -------------------------------------------------------------------------------- /TableViewCell展开Tests/TableViewCell__Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflyingfish01/tableviewcell-/HEAD/TableViewCell展开Tests/TableViewCell__Tests.m --------------------------------------------------------------------------------