├── .gitignore ├── LICENSE ├── LXMWaterfallLayout.podspec ├── LXMWaterfallLayout.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LXMWaterfallLayout ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CommonView │ ├── TestCollectionViewCell.swift │ ├── TestCollectionViewCell.xib │ ├── TestSectionView.swift │ └── TestSectionView.xib ├── DemoListViewController.swift ├── DemoViewControllers │ ├── DemoBaseViewController.swift │ ├── FlowViewController.swift │ ├── HeaderFooterViewController.swift │ ├── HorizontalMenuViewController.swift │ ├── MyTestViewController.swift │ ├── SpecifiedWidthWaterfallViewController.swift │ └── WaterfallViewController.swift ├── Info.plist ├── LXMWaterfallLayout-Bridging-Header.h ├── LXMWaterfallLayout │ ├── LXMHeaderFooterFlowLayout.swift │ ├── LXMHorizontalMenuLayout.swift │ ├── LXMLayoutHeaderFooterProtocol.swift │ └── LXMWaterfallLayout.swift ├── MyTestLayout.swift ├── TestObject.h ├── TestObject.m └── TestViewController.swift ├── README.md └── ScreenShots └── LXMWaterfallLayout.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /LXMWaterfallLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout.podspec -------------------------------------------------------------------------------- /LXMWaterfallLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LXMWaterfallLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LXMWaterfallLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LXMWaterfallLayout/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/AppDelegate.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LXMWaterfallLayout/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LXMWaterfallLayout/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LXMWaterfallLayout/CommonView/TestCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/CommonView/TestCollectionViewCell.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/CommonView/TestCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/CommonView/TestCollectionViewCell.xib -------------------------------------------------------------------------------- /LXMWaterfallLayout/CommonView/TestSectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/CommonView/TestSectionView.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/CommonView/TestSectionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/CommonView/TestSectionView.xib -------------------------------------------------------------------------------- /LXMWaterfallLayout/DemoListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/DemoListViewController.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/DemoViewControllers/DemoBaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/DemoViewControllers/DemoBaseViewController.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/DemoViewControllers/FlowViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/DemoViewControllers/FlowViewController.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/DemoViewControllers/HeaderFooterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/DemoViewControllers/HeaderFooterViewController.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/DemoViewControllers/HorizontalMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/DemoViewControllers/HorizontalMenuViewController.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/DemoViewControllers/MyTestViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/DemoViewControllers/MyTestViewController.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/DemoViewControllers/SpecifiedWidthWaterfallViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/DemoViewControllers/SpecifiedWidthWaterfallViewController.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/DemoViewControllers/WaterfallViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/DemoViewControllers/WaterfallViewController.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/Info.plist -------------------------------------------------------------------------------- /LXMWaterfallLayout/LXMWaterfallLayout-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/LXMWaterfallLayout-Bridging-Header.h -------------------------------------------------------------------------------- /LXMWaterfallLayout/LXMWaterfallLayout/LXMHeaderFooterFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/LXMWaterfallLayout/LXMHeaderFooterFlowLayout.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/LXMWaterfallLayout/LXMHorizontalMenuLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/LXMWaterfallLayout/LXMHorizontalMenuLayout.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/LXMWaterfallLayout/LXMLayoutHeaderFooterProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/LXMWaterfallLayout/LXMLayoutHeaderFooterProtocol.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/LXMWaterfallLayout/LXMWaterfallLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/LXMWaterfallLayout/LXMWaterfallLayout.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/MyTestLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/MyTestLayout.swift -------------------------------------------------------------------------------- /LXMWaterfallLayout/TestObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/TestObject.h -------------------------------------------------------------------------------- /LXMWaterfallLayout/TestObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/TestObject.m -------------------------------------------------------------------------------- /LXMWaterfallLayout/TestViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/LXMWaterfallLayout/TestViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/LXMWaterfallLayout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phelthas/LXMWaterfallLayout/HEAD/ScreenShots/LXMWaterfallLayout.gif --------------------------------------------------------------------------------