├── .DS_Store ├── LICENSE ├── README.md ├── WSLWaterFlowLayout.podspec ├── collectionView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── wangshuanglong.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── wsl.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── wangshuanglong.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── wsl.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── collectionView ├── 11.png ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── VC │ ├── WSLFlowLayoutStyleOne.h │ └── WSLFlowLayoutStyleOne.m ├── ViewController.h ├── ViewController.m ├── WSLWaterFlowHorizontalGrid.plist ├── WSLWaterFlowLayout │ ├── WSLWaterFlowLayout.h │ └── WSLWaterFlowLayout.m ├── main.m └── view │ ├── CollectionHeaderAndFooterView.h │ ├── CollectionHeaderAndFooterView.m │ ├── CollectionHeaderAndFooterView.xib │ ├── UIButton+WSLTitleImage.h │ ├── UIButton+WSLTitleImage.m │ ├── waterCollectionViewCell.h │ ├── waterCollectionViewCell.m │ └── waterCollectionViewCell.xib ├── collectionViewTests ├── Info.plist └── collectionViewTests.m ├── collectionViewUITests ├── Info.plist └── collectionViewUITests.m └── 瀑布流.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/README.md -------------------------------------------------------------------------------- /WSLWaterFlowLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/WSLWaterFlowLayout.podspec -------------------------------------------------------------------------------- /collectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /collectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /collectionView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /collectionView.xcodeproj/project.xcworkspace/xcuserdata/wangshuanglong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView.xcodeproj/project.xcworkspace/xcuserdata/wangshuanglong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /collectionView.xcodeproj/project.xcworkspace/xcuserdata/wsl.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView.xcodeproj/project.xcworkspace/xcuserdata/wsl.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /collectionView.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /collectionView.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /collectionView.xcodeproj/xcuserdata/wsl.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView.xcodeproj/xcuserdata/wsl.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /collectionView/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/11.png -------------------------------------------------------------------------------- /collectionView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/AppDelegate.h -------------------------------------------------------------------------------- /collectionView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/AppDelegate.m -------------------------------------------------------------------------------- /collectionView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /collectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /collectionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /collectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/Info.plist -------------------------------------------------------------------------------- /collectionView/VC/WSLFlowLayoutStyleOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/VC/WSLFlowLayoutStyleOne.h -------------------------------------------------------------------------------- /collectionView/VC/WSLFlowLayoutStyleOne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/VC/WSLFlowLayoutStyleOne.m -------------------------------------------------------------------------------- /collectionView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/ViewController.h -------------------------------------------------------------------------------- /collectionView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/ViewController.m -------------------------------------------------------------------------------- /collectionView/WSLWaterFlowHorizontalGrid.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/WSLWaterFlowHorizontalGrid.plist -------------------------------------------------------------------------------- /collectionView/WSLWaterFlowLayout/WSLWaterFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/WSLWaterFlowLayout/WSLWaterFlowLayout.h -------------------------------------------------------------------------------- /collectionView/WSLWaterFlowLayout/WSLWaterFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/WSLWaterFlowLayout/WSLWaterFlowLayout.m -------------------------------------------------------------------------------- /collectionView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/main.m -------------------------------------------------------------------------------- /collectionView/view/CollectionHeaderAndFooterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/view/CollectionHeaderAndFooterView.h -------------------------------------------------------------------------------- /collectionView/view/CollectionHeaderAndFooterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/view/CollectionHeaderAndFooterView.m -------------------------------------------------------------------------------- /collectionView/view/CollectionHeaderAndFooterView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/view/CollectionHeaderAndFooterView.xib -------------------------------------------------------------------------------- /collectionView/view/UIButton+WSLTitleImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/view/UIButton+WSLTitleImage.h -------------------------------------------------------------------------------- /collectionView/view/UIButton+WSLTitleImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/view/UIButton+WSLTitleImage.m -------------------------------------------------------------------------------- /collectionView/view/waterCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/view/waterCollectionViewCell.h -------------------------------------------------------------------------------- /collectionView/view/waterCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/view/waterCollectionViewCell.m -------------------------------------------------------------------------------- /collectionView/view/waterCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionView/view/waterCollectionViewCell.xib -------------------------------------------------------------------------------- /collectionViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionViewTests/Info.plist -------------------------------------------------------------------------------- /collectionViewTests/collectionViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionViewTests/collectionViewTests.m -------------------------------------------------------------------------------- /collectionViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionViewUITests/Info.plist -------------------------------------------------------------------------------- /collectionViewUITests/collectionViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/collectionViewUITests/collectionViewUITests.m -------------------------------------------------------------------------------- /瀑布流.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLWaterFlowLayout/HEAD/瀑布流.gif --------------------------------------------------------------------------------