├── .gitignore ├── Classes ├── UITableView+FDIndexPathHeightCache.h ├── UITableView+FDIndexPathHeightCache.m ├── UITableView+FDKeyedHeightCache.h ├── UITableView+FDKeyedHeightCache.m ├── UITableView+FDTemplateLayoutCell.h ├── UITableView+FDTemplateLayoutCell.m ├── UITableView+FDTemplateLayoutCellDebug.h └── UITableView+FDTemplateLayoutCellDebug.m ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Demo │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── FDAppDelegate.h │ ├── FDAppDelegate.m │ ├── FDFeedCell.h │ ├── FDFeedCell.m │ ├── FDFeedEntity.h │ ├── FDFeedEntity.m │ ├── FDFeedViewController.h │ ├── FDFeedViewController.m │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── breaddoge.imageset │ │ ├── Contents.json │ │ └── dogebread.png │ ├── doge.imageset │ │ ├── Contents.json │ │ └── doge@2x.png │ ├── forkingdog.imageset │ │ ├── Contents.json │ │ └── forkingdog@2x.png │ ├── phil.imageset │ │ ├── Contents.json │ │ └── phil.png │ ├── sark.imageset │ │ ├── Contents.json │ │ └── sark@2x.png │ ├── sinojerk.imageset │ │ ├── Contents.json │ │ └── 彪哥副本.png │ └── sunnyxx.imageset │ │ ├── Contents.json │ │ └── 下载.png │ ├── Info.plist │ ├── data.json │ └── main.m ├── FDTemplateCell.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── FDTemplateCell.xcscmblueprint ├── FDTemplateLayoutCell ├── FDTemplateLayoutCell.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── FDTemplateLayoutCell.xcscheme └── FDTemplateLayoutcell │ ├── FDTemplateLayoutCell.h │ └── Info.plist ├── LICENSE ├── README.md ├── Sceenshots ├── screenshot0.png ├── screenshot1.png └── screenshot2.gif └── UITableView+FDTemplateLayoutCell.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/UITableView+FDIndexPathHeightCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Classes/UITableView+FDIndexPathHeightCache.h -------------------------------------------------------------------------------- /Classes/UITableView+FDIndexPathHeightCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Classes/UITableView+FDIndexPathHeightCache.m -------------------------------------------------------------------------------- /Classes/UITableView+FDKeyedHeightCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Classes/UITableView+FDKeyedHeightCache.h -------------------------------------------------------------------------------- /Classes/UITableView+FDKeyedHeightCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Classes/UITableView+FDKeyedHeightCache.m -------------------------------------------------------------------------------- /Classes/UITableView+FDTemplateLayoutCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Classes/UITableView+FDTemplateLayoutCell.h -------------------------------------------------------------------------------- /Classes/UITableView+FDTemplateLayoutCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Classes/UITableView+FDTemplateLayoutCell.m -------------------------------------------------------------------------------- /Classes/UITableView+FDTemplateLayoutCellDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Classes/UITableView+FDTemplateLayoutCellDebug.h -------------------------------------------------------------------------------- /Classes/UITableView+FDTemplateLayoutCellDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Classes/UITableView+FDTemplateLayoutCellDebug.m -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Demo/FDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/FDAppDelegate.h -------------------------------------------------------------------------------- /Demo/Demo/FDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/FDAppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo/FDFeedCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/FDFeedCell.h -------------------------------------------------------------------------------- /Demo/Demo/FDFeedCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/FDFeedCell.m -------------------------------------------------------------------------------- /Demo/Demo/FDFeedEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/FDFeedEntity.h -------------------------------------------------------------------------------- /Demo/Demo/FDFeedEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/FDFeedEntity.m -------------------------------------------------------------------------------- /Demo/Demo/FDFeedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/FDFeedViewController.h -------------------------------------------------------------------------------- /Demo/Demo/FDFeedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/FDFeedViewController.m -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/breaddoge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/breaddoge.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/breaddoge.imageset/dogebread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/breaddoge.imageset/dogebread.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/doge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/doge.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/doge.imageset/doge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/doge.imageset/doge@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/forkingdog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/forkingdog.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/forkingdog.imageset/forkingdog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/forkingdog.imageset/forkingdog@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/phil.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/phil.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/phil.imageset/phil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/phil.imageset/phil.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/sark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/sark.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/sark.imageset/sark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/sark.imageset/sark@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/sinojerk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/sinojerk.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/sinojerk.imageset/彪哥副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/sinojerk.imageset/彪哥副本.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/sunnyxx.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/sunnyxx.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/sunnyxx.imageset/下载.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Images.xcassets/sunnyxx.imageset/下载.png -------------------------------------------------------------------------------- /Demo/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/Demo/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/data.json -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Demo/Demo/main.m -------------------------------------------------------------------------------- /FDTemplateCell.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/FDTemplateCell.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FDTemplateCell.xcworkspace/xcshareddata/FDTemplateCell.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/FDTemplateCell.xcworkspace/xcshareddata/FDTemplateCell.xcscmblueprint -------------------------------------------------------------------------------- /FDTemplateLayoutCell/FDTemplateLayoutCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/FDTemplateLayoutCell/FDTemplateLayoutCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FDTemplateLayoutCell/FDTemplateLayoutCell.xcodeproj/xcshareddata/xcschemes/FDTemplateLayoutCell.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/FDTemplateLayoutCell/FDTemplateLayoutCell.xcodeproj/xcshareddata/xcschemes/FDTemplateLayoutCell.xcscheme -------------------------------------------------------------------------------- /FDTemplateLayoutCell/FDTemplateLayoutcell/FDTemplateLayoutCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/FDTemplateLayoutCell/FDTemplateLayoutcell/FDTemplateLayoutCell.h -------------------------------------------------------------------------------- /FDTemplateLayoutCell/FDTemplateLayoutcell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/FDTemplateLayoutCell/FDTemplateLayoutcell/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/README.md -------------------------------------------------------------------------------- /Sceenshots/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Sceenshots/screenshot0.png -------------------------------------------------------------------------------- /Sceenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Sceenshots/screenshot1.png -------------------------------------------------------------------------------- /Sceenshots/screenshot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/Sceenshots/screenshot2.gif -------------------------------------------------------------------------------- /UITableView+FDTemplateLayoutCell.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkingdog/UITableView-FDTemplateLayoutCell/HEAD/UITableView+FDTemplateLayoutCell.podspec --------------------------------------------------------------------------------