I use a UICollectionView
with UICollectionViewFlowLayout
. I change the height of a UICollectionViewCell
if a user touches it. To achieve that I use performBatchUpdates:
to animate the height change. This works perfectly and the change gets animated with a standard grow and shrink animation.
But I would like to change this standard animation. How would I do that? I can't seem to find any hint on how to influence the animation type used.