├── .gitignore ├── LICENSE ├── README.md ├── TableCollectionManager.podspec └── TableCollectionManager ├── TableCollectionManager.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── TableCollectionManager ├── CollectionManager │ ├── Actions │ │ ├── CollectionActions.swift │ │ └── CollectionLayoutHandler.swift │ ├── CellRegisterer │ │ └── CollectionCellRegisterer.swift │ ├── Configurable │ │ └── CollectionConfigurable.swift │ ├── HeaderFooter │ │ ├── CollectionHeaderFooter.swift │ │ └── CollectionHeaderFooterItem.swift │ ├── Manager │ │ ├── CollectionManager+UICollectionViewDataSource.swift │ │ ├── CollectionManager+UICollectionViewDelegate.swift │ │ ├── CollectionManager+UICollectionViewDelegateFlowLayout.swift │ │ ├── CollectionManager+UIScrollViewDelegate.swift │ │ └── CollectionManager.swift │ ├── Row │ │ ├── CollectionRow.swift │ │ ├── CollectionRowActionResult.swift │ │ ├── CollectionRowActionsHandler.swift │ │ └── CollectionRowItem.swift │ ├── Section │ │ ├── CollectionSection.swift │ │ └── CollectionSectionsHandler.swift │ └── Storage │ │ └── CollectionStorage.swift ├── Common │ ├── Actions │ │ └── ScrollDelegateActionsHandler.swift │ ├── Configurable │ │ └── Configurable.swift │ ├── Section │ │ ├── Section.swift │ │ └── SectionsHandler.swift │ ├── Storage │ │ ├── Storage.swift │ │ └── StorageUpdate.swift │ └── Utils │ │ └── HashableItem.swift ├── Info.plist ├── TableCollectionManager.h └── TableManager │ ├── Actions │ └── TableActions.swift │ ├── CellRegisterer │ └── TableCellRegisterer.swift │ ├── Configurable │ └── TableConfigurable.swift │ ├── HeaderFooter │ ├── TableHeaderFooter.swift │ └── TableHeaderFooterItem.swift │ ├── Manager │ ├── TableManager+UIScrollViewDelegate.swift │ ├── TableManager+UITableViewDataSource.swift │ ├── TableManager+UITableViewDelegate.swift │ └── TableManager.swift │ ├── Row │ ├── TableRow.swift │ ├── TableRowActionResult.swift │ ├── TableRowActionsHandler.swift │ └── TableRowItem.swift │ ├── Section │ ├── TableSection.swift │ └── TableSectionsHandler.swift │ └── Storage │ └── TableStorage.swift ├── TableCollectionManagerExample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Common │ ├── TitleCell.swift │ └── TitleHeaderFooter.swift ├── ExampleControllers │ ├── CollectionViewExampleVC.swift │ ├── TableViewExampleVC.swift │ └── TableViewReorderingVC.swift ├── Info.plist ├── MenuVC.swift └── SceneDelegate.swift └── TableCollectionManagerTests ├── Info.plist └── TableCollectionManagerTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/README.md -------------------------------------------------------------------------------- /TableCollectionManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager.podspec -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Actions/CollectionActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Actions/CollectionActions.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Actions/CollectionLayoutHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Actions/CollectionLayoutHandler.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/CellRegisterer/CollectionCellRegisterer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/CellRegisterer/CollectionCellRegisterer.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Configurable/CollectionConfigurable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Configurable/CollectionConfigurable.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/HeaderFooter/CollectionHeaderFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/HeaderFooter/CollectionHeaderFooter.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/HeaderFooter/CollectionHeaderFooterItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/HeaderFooter/CollectionHeaderFooterItem.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager+UICollectionViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager+UICollectionViewDataSource.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager+UICollectionViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager+UICollectionViewDelegate.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager+UICollectionViewDelegateFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager+UICollectionViewDelegateFlowLayout.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager+UIScrollViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager+UIScrollViewDelegate.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Manager/CollectionManager.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Row/CollectionRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Row/CollectionRow.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Row/CollectionRowActionResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Row/CollectionRowActionResult.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Row/CollectionRowActionsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Row/CollectionRowActionsHandler.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Row/CollectionRowItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Row/CollectionRowItem.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Section/CollectionSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Section/CollectionSection.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Section/CollectionSectionsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Section/CollectionSectionsHandler.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/CollectionManager/Storage/CollectionStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/CollectionManager/Storage/CollectionStorage.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/Common/Actions/ScrollDelegateActionsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/Common/Actions/ScrollDelegateActionsHandler.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/Common/Configurable/Configurable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/Common/Configurable/Configurable.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/Common/Section/Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/Common/Section/Section.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/Common/Section/SectionsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/Common/Section/SectionsHandler.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/Common/Storage/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/Common/Storage/Storage.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/Common/Storage/StorageUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/Common/Storage/StorageUpdate.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/Common/Utils/HashableItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/Common/Utils/HashableItem.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/Info.plist -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableCollectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableCollectionManager.h -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Actions/TableActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Actions/TableActions.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/CellRegisterer/TableCellRegisterer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/CellRegisterer/TableCellRegisterer.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Configurable/TableConfigurable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Configurable/TableConfigurable.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/HeaderFooter/TableHeaderFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/HeaderFooter/TableHeaderFooter.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/HeaderFooter/TableHeaderFooterItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/HeaderFooter/TableHeaderFooterItem.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Manager/TableManager+UIScrollViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Manager/TableManager+UIScrollViewDelegate.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Manager/TableManager+UITableViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Manager/TableManager+UITableViewDataSource.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Manager/TableManager+UITableViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Manager/TableManager+UITableViewDelegate.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Manager/TableManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Manager/TableManager.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Row/TableRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Row/TableRow.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Row/TableRowActionResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Row/TableRowActionResult.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Row/TableRowActionsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Row/TableRowActionsHandler.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Row/TableRowItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Row/TableRowItem.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Section/TableSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Section/TableSection.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Section/TableSectionsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Section/TableSectionsHandler.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManager/TableManager/Storage/TableStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManager/TableManager/Storage/TableStorage.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/AppDelegate.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/Common/TitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/Common/TitleCell.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/Common/TitleHeaderFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/Common/TitleHeaderFooter.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/ExampleControllers/CollectionViewExampleVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/ExampleControllers/CollectionViewExampleVC.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/ExampleControllers/TableViewExampleVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/ExampleControllers/TableViewExampleVC.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/ExampleControllers/TableViewReorderingVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/ExampleControllers/TableViewReorderingVC.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/Info.plist -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/MenuVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/MenuVC.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerExample/SceneDelegate.swift -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerTests/Info.plist -------------------------------------------------------------------------------- /TableCollectionManager/TableCollectionManagerTests/TableCollectionManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/TableCollectionManager/HEAD/TableCollectionManager/TableCollectionManagerTests/TableCollectionManagerTests.swift --------------------------------------------------------------------------------