Here’s how to add an animation to your UICollectionView Cell. Override the following function: // Animation of UICollectionViewCell override func collectionView(collectionView: UICollectionView, willDisplayCell cell: UICollectionViewCell, forItemAtIndexPath indexPath: NSIndexPath) { cell.alpha = 0 cell.layer.transform = CATransform3DMakeScale(0.5, 0.5, 0.5) UIView.animateWithDuration(0.4, animations: {... Continue Reading →