├── .gitignore ├── LICENSE ├── README.md ├── ios-swift-collapsible-table-section-in-grouped-section.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ios-swift-collapsible-table-section-in-grouped-section ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HeaderCell.swift ├── Info.plist └── ViewController.swift └── screenshots ├── cells.png └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/README.md -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section/AppDelegate.swift -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section/HeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section/HeaderCell.swift -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section/Info.plist -------------------------------------------------------------------------------- /ios-swift-collapsible-table-section-in-grouped-section/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/ios-swift-collapsible-table-section-in-grouped-section/ViewController.swift -------------------------------------------------------------------------------- /screenshots/cells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/screenshots/cells.png -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeantimex/ios-swift-collapsible-table-section-in-grouped-section/HEAD/screenshots/demo.gif --------------------------------------------------------------------------------