2017-11-01T03:42:45Z||2017-11-01T03:42:45Z
不像UITableView那样,UICollectionViewCell没有自带的选中高亮,这个需要开发人员自己设置下。
具体可以使用UICollectionViewDelegate
的这两个方法:
- (void)collectionView:(UICollectionView *)colView didHighlightItemAtIndexPath:(NSIndexPath *)indexPath;
- (void)collectionView:(UICollectionView *)colView didUnhighlightItemAtIndexPath:(NSIndexPath *)indexPath;
或者改写UICollectionViewCell
的setHighlighted.
- (void)setHighlighted:(BOOL)highlighted;