├── .gitignore ├── ColumnView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── ColumnView.xcscheme │ └── ColumnViewDemo.xcscheme ├── ColumnView ├── ColumnNavigationController.swift ├── ColumnSeparatorView.swift ├── ColumnView.h ├── ColumnViewController.swift ├── Info.plist └── UIKit+Extensions.swift ├── ColumnsDemo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ColumnsDemo.entitlements ├── Info.plist └── SceneDelegate.swift ├── Controllers ├── Base.swift ├── ContactInfo.swift ├── Contacts.swift ├── Groups.swift ├── PlaceholderViewController.swift └── PlaceholderViewController.xib ├── Model ├── Color+Random.swift ├── Lorem.swift └── Model.swift ├── README.md ├── Views ├── Cells.swift ├── ReusableViewNibLoadable.swift ├── SeparatorView.swift └── SeparatorView.xib └── sample.GIF /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/.gitignore -------------------------------------------------------------------------------- /ColumnView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ColumnView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ColumnView.xcodeproj/xcshareddata/xcschemes/ColumnView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView.xcodeproj/xcshareddata/xcschemes/ColumnView.xcscheme -------------------------------------------------------------------------------- /ColumnView.xcodeproj/xcshareddata/xcschemes/ColumnViewDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView.xcodeproj/xcshareddata/xcschemes/ColumnViewDemo.xcscheme -------------------------------------------------------------------------------- /ColumnView/ColumnNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView/ColumnNavigationController.swift -------------------------------------------------------------------------------- /ColumnView/ColumnSeparatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView/ColumnSeparatorView.swift -------------------------------------------------------------------------------- /ColumnView/ColumnView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView/ColumnView.h -------------------------------------------------------------------------------- /ColumnView/ColumnViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView/ColumnViewController.swift -------------------------------------------------------------------------------- /ColumnView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView/Info.plist -------------------------------------------------------------------------------- /ColumnView/UIKit+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnView/UIKit+Extensions.swift -------------------------------------------------------------------------------- /ColumnsDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnsDemo/AppDelegate.swift -------------------------------------------------------------------------------- /ColumnsDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnsDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ColumnsDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnsDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ColumnsDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnsDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ColumnsDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnsDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ColumnsDemo/ColumnsDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnsDemo/ColumnsDemo.entitlements -------------------------------------------------------------------------------- /ColumnsDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnsDemo/Info.plist -------------------------------------------------------------------------------- /ColumnsDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/ColumnsDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /Controllers/Base.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Controllers/Base.swift -------------------------------------------------------------------------------- /Controllers/ContactInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Controllers/ContactInfo.swift -------------------------------------------------------------------------------- /Controllers/Contacts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Controllers/Contacts.swift -------------------------------------------------------------------------------- /Controllers/Groups.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Controllers/Groups.swift -------------------------------------------------------------------------------- /Controllers/PlaceholderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Controllers/PlaceholderViewController.swift -------------------------------------------------------------------------------- /Controllers/PlaceholderViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Controllers/PlaceholderViewController.xib -------------------------------------------------------------------------------- /Model/Color+Random.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Model/Color+Random.swift -------------------------------------------------------------------------------- /Model/Lorem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Model/Lorem.swift -------------------------------------------------------------------------------- /Model/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Model/Model.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/README.md -------------------------------------------------------------------------------- /Views/Cells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Views/Cells.swift -------------------------------------------------------------------------------- /Views/ReusableViewNibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Views/ReusableViewNibLoadable.swift -------------------------------------------------------------------------------- /Views/SeparatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Views/SeparatorView.swift -------------------------------------------------------------------------------- /Views/SeparatorView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/Views/SeparatorView.xib -------------------------------------------------------------------------------- /sample.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/ColumnView/HEAD/sample.GIF --------------------------------------------------------------------------------