为UICollectionViewCell添加选中效果。
方法一:
重写Cell的-setSelected:方法,在这个方法中增加动画效果。
The selected state is toggled when the user lifts up from a highlighted cell.
Override these methods to provide custom UI for a selected or highlighted state.
方法二:
在CollectionView回调方法-collectionView:didHighlightItemAtIndexPath:和-collectionView:didUnhighlightItemAtIndexPath:中添加动画效果。
方法三:
为CollectionViewCell添加-performSelectAnimation方法展示选中的动画效果,当-collectionView:didSelectItemAtIndexPath:时调用该方法。