选择时的 UICollectionView 动画单元格图像

UICollectionView animate cell image when selected

我在我的应用程序中使用 UICollectionView 创建了一个菜单栏。我想在选定的单元格上制作动画。现在我只是通过覆盖 collectionViewCell class 中的 isSelected 来更改所选单元格上的图像。我怎样才能像底部的这张图片那样制作动画。任何帮助将不胜感激。

我的菜单栏图片:

假设您想要设置动画(例如:淡入淡出)两个图像之间的过渡,当您更改图像(在您的 isSelected 中)时,您可以使用此代码:

UIView.transition(with: self, duration: 0.25, options: UIViewAnimationOptions.transitionCrossDissolve, animations: {
// change the image
}