├── Collection View Animation Bug.xcodeproj └── project.pbxproj ├── Collection View Animation Bug ├── Collection View Animation Bug-Info.plist ├── Collection View Animation Bug-Prefix.pch ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── JPSAppDelegate.h ├── JPSAppDelegate.m ├── JPSCollectionViewController.h ├── JPSCollectionViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── README.md └── UICV_Animation_Bug.gif /Collection View Animation Bug.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Collection View Animation Bug/Collection View Animation Bug-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/Collection View Animation Bug-Info.plist -------------------------------------------------------------------------------- /Collection View Animation Bug/Collection View Animation Bug-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/Collection View Animation Bug-Prefix.pch -------------------------------------------------------------------------------- /Collection View Animation Bug/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/Default-568h@2x.png -------------------------------------------------------------------------------- /Collection View Animation Bug/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/Default.png -------------------------------------------------------------------------------- /Collection View Animation Bug/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/Default@2x.png -------------------------------------------------------------------------------- /Collection View Animation Bug/JPSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/JPSAppDelegate.h -------------------------------------------------------------------------------- /Collection View Animation Bug/JPSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/JPSAppDelegate.m -------------------------------------------------------------------------------- /Collection View Animation Bug/JPSCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/JPSCollectionViewController.h -------------------------------------------------------------------------------- /Collection View Animation Bug/JPSCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/JPSCollectionViewController.m -------------------------------------------------------------------------------- /Collection View Animation Bug/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Collection View Animation Bug/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/Collection View Animation Bug/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/README.md -------------------------------------------------------------------------------- /UICV_Animation_Bug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/UICollectionView-Animation-Bug/HEAD/UICV_Animation_Bug.gif --------------------------------------------------------------------------------