gitextract_zzqwrinj/ ├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── FoldingCell/ │ ├── FoldingCell/ │ │ ├── FoldingCell.h │ │ ├── FoldingCell.swift │ │ └── Info.plist │ ├── FoldingCell-Demo/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── arrow.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── background.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── burger.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── dots.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── image.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── photo.imageset/ │ │ │ │ └── Contents.json │ │ │ └── stars.imageset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── DemoCell.swift │ │ ├── Info.plist │ │ └── TableViewController.swift │ ├── FoldingCell-DemoObjc/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── arrow.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── background.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── burger.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── dots.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── image.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── photo.imageset/ │ │ │ │ └── Contents.json │ │ │ └── stars.imageset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── TableViewController.h │ │ ├── TableViewController.m │ │ └── main.m │ ├── FoldingCell.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── FoldingCell.xcscheme │ └── FoldingCellDemoTests/ │ ├── FoldingCellDemoTests.swift │ ├── Info.plist │ └── RotationViewTests.swift ├── FoldingCell.podspec ├── LICENSE ├── Package.swift ├── README.md └── docs/ ├── Classes/ │ └── FoldingCell.html ├── Classes.html ├── css/ │ ├── highlight.css │ └── jazzy.css ├── docsets/ │ ├── FoldingCell.docset/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── Resources/ │ │ ├── Documents/ │ │ │ ├── Classes/ │ │ │ │ └── FoldingCell.html │ │ │ ├── Classes.html │ │ │ ├── css/ │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ └── jazzy.js │ │ │ └── undocumented.txt │ │ └── docSet.dsidx │ └── FoldingCell.tgz ├── index.html ├── js/ │ └── jazzy.js └── undocumented.txt