├── .gitignore ├── AnimationGif ├── Fix Insert Animation Issue.gif ├── Insert and Delete Animation.gif └── Move Animation.gif ├── CollectionViewAnimationSample ├── CollectionViewAnimationSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── CollectionViewAnimationSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CollectionViewController.swift │ ├── Info.plist │ ├── SDEFlowLayoutWithAnimation.swift │ └── UIViewRefactorAndDestructExtension.swift ├── FileToImport ├── SDEFlowLayoutWithAnimation.swift └── UIViewRefactorAndDestructExtension.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /AnimationGif/Fix Insert Animation Issue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/AnimationGif/Fix Insert Animation Issue.gif -------------------------------------------------------------------------------- /AnimationGif/Insert and Delete Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/AnimationGif/Insert and Delete Animation.gif -------------------------------------------------------------------------------- /AnimationGif/Move Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/AnimationGif/Move Animation.gif -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample/AppDelegate.swift -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample/CollectionViewController.swift -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample/Info.plist -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample/SDEFlowLayoutWithAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample/SDEFlowLayoutWithAnimation.swift -------------------------------------------------------------------------------- /CollectionViewAnimationSample/CollectionViewAnimationSample/UIViewRefactorAndDestructExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/CollectionViewAnimationSample/CollectionViewAnimationSample/UIViewRefactorAndDestructExtension.swift -------------------------------------------------------------------------------- /FileToImport/SDEFlowLayoutWithAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/FileToImport/SDEFlowLayoutWithAnimation.swift -------------------------------------------------------------------------------- /FileToImport/UIViewRefactorAndDestructExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/FileToImport/UIViewRefactorAndDestructExtension.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedante/CollectionViewAnimation/HEAD/README.md --------------------------------------------------------------------------------