UICollectionView的单选

2017-11-02  本文已影响411人  ShineYangGod

//点击选定

}
//取消选定
-(void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath{
PackCollectionViewCell *cell = (PackCollectionViewCell *)[collectionView cellForItemAtIndexPath:indexPath];
cell.backgroundColor=[UIColor whiteColor];
cell.topLabel.textColor=[UIColor colorWithRed:27/255.0 green:166/255.0 blue:152/255.0 alpha:1];
cell.bottomLabel.textColor=[UIColor blackColor];
NSLog(@"1第%ld区,1第%ld个",(long)indexPath.section,(long)indexPath.row);
}
//设置背景色

上一篇下一篇

猜你喜欢

热点阅读