├── CollectionViewAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── mac.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CollectionViewAnimation.xcscheme │ └── xcschememanagement.plist ├── CollectionViewAnimation ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── DetailView.xib ├── ImageFactory.swift ├── Images.xcassets │ ├── 1.imageset │ │ ├── 1.jpg │ │ └── Contents.json │ ├── 2.imageset │ │ ├── 2.jpg │ │ └── Contents.json │ ├── 3.imageset │ │ ├── 3.jpg │ │ └── Contents.json │ ├── 4.imageset │ │ ├── 4.jpg │ │ └── Contents.json │ ├── 5.imageset │ │ ├── 5.jpg │ │ └── Contents.json │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist └── PhotoCollection.swift ├── CollectionViewAnimationTests ├── CollectionViewAnimationTests.swift └── Info.plist ├── CollectionViewController.swift ├── Project3.gif └── README.md /CollectionViewAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionViewAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionViewAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CollectionViewAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/CollectionViewAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/CollectionViewAnimation.xcscheme -------------------------------------------------------------------------------- /CollectionViewAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CollectionViewAnimation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/AppDelegate.swift -------------------------------------------------------------------------------- /CollectionViewAnimation/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /CollectionViewAnimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CollectionViewAnimation/DetailView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/DetailView.xib -------------------------------------------------------------------------------- /CollectionViewAnimation/ImageFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/ImageFactory.swift -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/1.imageset/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/1.imageset/1.jpg -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/2.imageset/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/2.imageset/2.jpg -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/3.imageset/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/3.imageset/3.jpg -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/4.imageset/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/4.imageset/4.jpg -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/5.imageset/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/5.imageset/5.jpg -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/5.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewAnimation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionViewAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/Info.plist -------------------------------------------------------------------------------- /CollectionViewAnimation/PhotoCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimation/PhotoCollection.swift -------------------------------------------------------------------------------- /CollectionViewAnimationTests/CollectionViewAnimationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimationTests/CollectionViewAnimationTests.swift -------------------------------------------------------------------------------- /CollectionViewAnimationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewAnimationTests/Info.plist -------------------------------------------------------------------------------- /CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/CollectionViewController.swift -------------------------------------------------------------------------------- /Project3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/Project3.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themsaid/page-flip-for-UICollectionViewCell/HEAD/README.md --------------------------------------------------------------------------------