├── .gitignore ├── README.md ├── WaterFlowDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── WaterFlowDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LJJWaterFlowLayout.h ├── LJJWaterFlowLayout.m ├── ViewController.h ├── ViewController.m ├── WaterFlowDemo.xcdatamodeld │ ├── .xccurrentversion │ └── WaterFlowDemo.xcdatamodel │ │ └── contents └── main.m ├── WaterFlowDemoTests ├── Info.plist └── WaterFlowDemoTests.m ├── WaterFlowDemoUITests ├── Info.plist └── WaterFlowDemoUITests.m └── waterFlow.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/README.md -------------------------------------------------------------------------------- /WaterFlowDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WaterFlowDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WaterFlowDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WaterFlowDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/AppDelegate.h -------------------------------------------------------------------------------- /WaterFlowDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/AppDelegate.m -------------------------------------------------------------------------------- /WaterFlowDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WaterFlowDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WaterFlowDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WaterFlowDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WaterFlowDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/Info.plist -------------------------------------------------------------------------------- /WaterFlowDemo/LJJWaterFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/LJJWaterFlowLayout.h -------------------------------------------------------------------------------- /WaterFlowDemo/LJJWaterFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/LJJWaterFlowLayout.m -------------------------------------------------------------------------------- /WaterFlowDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/ViewController.h -------------------------------------------------------------------------------- /WaterFlowDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/ViewController.m -------------------------------------------------------------------------------- /WaterFlowDemo/WaterFlowDemo.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/WaterFlowDemo.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /WaterFlowDemo/WaterFlowDemo.xcdatamodeld/WaterFlowDemo.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/WaterFlowDemo.xcdatamodeld/WaterFlowDemo.xcdatamodel/contents -------------------------------------------------------------------------------- /WaterFlowDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemo/main.m -------------------------------------------------------------------------------- /WaterFlowDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemoTests/Info.plist -------------------------------------------------------------------------------- /WaterFlowDemoTests/WaterFlowDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemoTests/WaterFlowDemoTests.m -------------------------------------------------------------------------------- /WaterFlowDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemoUITests/Info.plist -------------------------------------------------------------------------------- /WaterFlowDemoUITests/WaterFlowDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/WaterFlowDemoUITests/WaterFlowDemoUITests.m -------------------------------------------------------------------------------- /waterFlow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoulmateL/WaterFlowDemo/HEAD/waterFlow.gif --------------------------------------------------------------------------------