gitextract_apmunmq8/ ├── .gitignore ├── AZExpandable.podspec ├── Example/ │ ├── ExpandableCell/ │ │ ├── Supporting Files/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ └── LaunchScreen.storyboard │ │ │ └── Info.plist │ │ ├── View Controller/ │ │ │ ├── BasicDemoViewController.swift │ │ │ ├── CellFactory.swift │ │ │ ├── ComplexDemoViewController.swift │ │ │ ├── LoadMoreDemoViewController.swift │ │ │ └── PickerItemsController.swift │ │ ├── ViewModels/ │ │ │ ├── TableViewModel.swift │ │ │ └── TableViewModelFactory.swift │ │ └── Views/ │ │ ├── Base.lproj/ │ │ │ └── Demo.storyboard │ │ ├── CenteredLabelCell.swift │ │ └── CenteredLabelCell.xib │ ├── ExpandableCell.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── ExpandableCell.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── Podfile ├── Gemfile ├── LICENSE ├── README.md ├── Source/ │ ├── ExpandableCell-Bridging-Header.h │ ├── ExpandableTable/ │ │ ├── Cells/ │ │ │ ├── ActivityIndicatorCell.swift │ │ │ ├── DatePickerCell.swift │ │ │ ├── PickerCell.swift │ │ │ └── UIView+Autolayout.swift │ │ ├── ExpandableCellInfo.swift │ │ ├── ExpandableTable.swift │ │ ├── IndexPath+SyntaxSugar.swift │ │ └── PagingTable.swift │ └── Proxy/ │ ├── ExpandableProxy.h │ └── ExpandableProxy.m └── _config.yml