├── .github └── workflows │ └── test.yml ├── .gitignore ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── FirstViewController.swift │ ├── Info.plist │ ├── MainViewController.swift │ ├── SecondViewController.swift │ ├── TextCollectionViewCell.swift │ ├── ThirdViewController.swift │ └── WaterfallCollectionViewLayout.swift └── ExampleTests │ ├── ExampleTests.swift │ └── Info.plist ├── LICENSE └── README.md /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/FirstViewController.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/MainViewController.swift -------------------------------------------------------------------------------- /Example/Example/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/SecondViewController.swift -------------------------------------------------------------------------------- /Example/Example/TextCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/TextCollectionViewCell.swift -------------------------------------------------------------------------------- /Example/Example/ThirdViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/ThirdViewController.swift -------------------------------------------------------------------------------- /Example/Example/WaterfallCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/Example/WaterfallCollectionViewLayout.swift -------------------------------------------------------------------------------- /Example/ExampleTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/ExampleTests/ExampleTests.swift -------------------------------------------------------------------------------- /Example/ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/Example/ExampleTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nshint/uicollectionview-reordering/HEAD/README.md --------------------------------------------------------------------------------