//設置點擊高亮和非高亮效果!it
- (BOOL)collectionView:(UICollectionView *)collectionView shouldHighlightItemAtIndexPath:(NSIndexPath *)indexPath{io
NSLog(@"shouldHighlightItemAtIndexPath");di
return YES;co
}return
- (void)collectionView:(UICollectionView *)collectionView didHighlightItemAtIndexPath:(NSIndexPath *)indexPath{void
NSLog(@"didHighlightItemAtIndexPath");index
UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath];
[cell setBackgroundColor:UIColorFromRGB(0xC9C9C9)];
}
- (void)collectionView:(UICollectionView *)collectionView didUnhighlightItemAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"didUnhighlightItemAtIndexPath");
UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath];
[cell setBackgroundColor:[UIColor whiteColor]];
}