├── ProtocolCellTest.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── edz.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── edz.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── ProtocolCellTest ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Cell │ ├── KTTableViewCell00.h │ ├── KTTableViewCell00.m │ ├── KTTableViewCell01.h │ ├── KTTableViewCell01.m │ ├── KTTableViewCell02.h │ ├── KTTableViewCell02.m │ ├── KTTableViewCell03.h │ └── KTTableViewCell03.m ├── Info.plist ├── ModuleA │ ├── KTModel.h │ ├── KTModel.m │ ├── ModuleACellConfigHelper.h │ └── ModuleACellConfigHelper.m ├── ViewController.h ├── ViewController.m └── main.m ├── ProtocolCellTestTests ├── Info.plist └── ProtocolCellTestTests.m ├── ProtocolCellTestUITests ├── Info.plist └── ProtocolCellTestUITests.m └── README.md /ProtocolCellTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ProtocolCellTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ProtocolCellTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ProtocolCellTest.xcodeproj/project.xcworkspace/xcuserdata/edz.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest.xcodeproj/project.xcworkspace/xcuserdata/edz.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ProtocolCellTest.xcodeproj/xcuserdata/edz.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest.xcodeproj/xcuserdata/edz.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ProtocolCellTest.xcodeproj/xcuserdata/edz.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest.xcodeproj/xcuserdata/edz.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ProtocolCellTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/AppDelegate.h -------------------------------------------------------------------------------- /ProtocolCellTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/AppDelegate.m -------------------------------------------------------------------------------- /ProtocolCellTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ProtocolCellTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ProtocolCellTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ProtocolCellTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ProtocolCellTest/Cell/KTTableViewCell00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Cell/KTTableViewCell00.h -------------------------------------------------------------------------------- /ProtocolCellTest/Cell/KTTableViewCell00.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Cell/KTTableViewCell00.m -------------------------------------------------------------------------------- /ProtocolCellTest/Cell/KTTableViewCell01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Cell/KTTableViewCell01.h -------------------------------------------------------------------------------- /ProtocolCellTest/Cell/KTTableViewCell01.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Cell/KTTableViewCell01.m -------------------------------------------------------------------------------- /ProtocolCellTest/Cell/KTTableViewCell02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Cell/KTTableViewCell02.h -------------------------------------------------------------------------------- /ProtocolCellTest/Cell/KTTableViewCell02.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Cell/KTTableViewCell02.m -------------------------------------------------------------------------------- /ProtocolCellTest/Cell/KTTableViewCell03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Cell/KTTableViewCell03.h -------------------------------------------------------------------------------- /ProtocolCellTest/Cell/KTTableViewCell03.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Cell/KTTableViewCell03.m -------------------------------------------------------------------------------- /ProtocolCellTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/Info.plist -------------------------------------------------------------------------------- /ProtocolCellTest/ModuleA/KTModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/ModuleA/KTModel.h -------------------------------------------------------------------------------- /ProtocolCellTest/ModuleA/KTModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/ModuleA/KTModel.m -------------------------------------------------------------------------------- /ProtocolCellTest/ModuleA/ModuleACellConfigHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/ModuleA/ModuleACellConfigHelper.h -------------------------------------------------------------------------------- /ProtocolCellTest/ModuleA/ModuleACellConfigHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/ModuleA/ModuleACellConfigHelper.m -------------------------------------------------------------------------------- /ProtocolCellTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/ViewController.h -------------------------------------------------------------------------------- /ProtocolCellTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/ViewController.m -------------------------------------------------------------------------------- /ProtocolCellTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTest/main.m -------------------------------------------------------------------------------- /ProtocolCellTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTestTests/Info.plist -------------------------------------------------------------------------------- /ProtocolCellTestTests/ProtocolCellTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTestTests/ProtocolCellTestTests.m -------------------------------------------------------------------------------- /ProtocolCellTestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTestUITests/Info.plist -------------------------------------------------------------------------------- /ProtocolCellTestUITests/ProtocolCellTestUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/ProtocolCellTestUITests/ProtocolCellTestUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiritoSong/KTTableViewProtocolDemo/HEAD/README.md --------------------------------------------------------------------------------