├── .DS_Store ├── .gitignore ├── AutoTable.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── AutoTable ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── AutoTable │ ├── IndexPathKey.swift │ ├── TableViewCellModel.swift │ ├── TableViewModel.swift │ ├── TableViewSectionModel.swift │ └── TableViewShim.swift ├── Base.lproj │ └── LaunchScreen.storyboard ├── Example │ ├── .DS_Store │ ├── Main.storyboard │ ├── UI │ │ ├── UserCell.swift │ │ └── UserCell.xib │ ├── User.swift │ └── UserListViewModelProvider.swift ├── Info.plist └── UserListViewController.swift └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoTable.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AutoTable.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AutoTable/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/.DS_Store -------------------------------------------------------------------------------- /AutoTable/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/AppDelegate.swift -------------------------------------------------------------------------------- /AutoTable/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AutoTable/AutoTable/IndexPathKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/AutoTable/IndexPathKey.swift -------------------------------------------------------------------------------- /AutoTable/AutoTable/TableViewCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/AutoTable/TableViewCellModel.swift -------------------------------------------------------------------------------- /AutoTable/AutoTable/TableViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/AutoTable/TableViewModel.swift -------------------------------------------------------------------------------- /AutoTable/AutoTable/TableViewSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/AutoTable/TableViewSectionModel.swift -------------------------------------------------------------------------------- /AutoTable/AutoTable/TableViewShim.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/AutoTable/TableViewShim.swift -------------------------------------------------------------------------------- /AutoTable/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AutoTable/Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Example/.DS_Store -------------------------------------------------------------------------------- /AutoTable/Example/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Example/Main.storyboard -------------------------------------------------------------------------------- /AutoTable/Example/UI/UserCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Example/UI/UserCell.swift -------------------------------------------------------------------------------- /AutoTable/Example/UI/UserCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Example/UI/UserCell.xib -------------------------------------------------------------------------------- /AutoTable/Example/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Example/User.swift -------------------------------------------------------------------------------- /AutoTable/Example/UserListViewModelProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Example/UserListViewModelProvider.swift -------------------------------------------------------------------------------- /AutoTable/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/Info.plist -------------------------------------------------------------------------------- /AutoTable/UserListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/AutoTable/UserListViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben-G/AutoTable/HEAD/README.md --------------------------------------------------------------------------------