So, I have a UICollectionView where I insert new items.
I used the most of the suggestions from the Collection View Programming Guide - section \"Making Insertion an
You can change any animation speed with CALayer. So for UICollectionView this looks like the following:
[self.collectionView.viewForBaselineLayout.layer setSpeed:0.1f];
And you can change back the original speed:
[self.collectionView.viewForBaselineLayout.layer setSpeed:1.0f];
For this to work you may need to import QuartzCore:
#import