美文网首页
UICollectionViewCell的点击效果

UICollectionViewCell的点击效果

作者: 流沙3333 | 来源:发表于2018-05-18 15:52 被阅读47次

- (BOOL)collectionView:(UICollectionView*)collectionView shouldHighlightItemAtIndexPath:(NSIndexPath*)indexPath{

    return YES;

}

- (void)collectionView:(UICollectionView*)collectionView didHighlightItemAtIndexPath:(NSIndexPath*)indexPath{

    UICollectionViewCell* cell = [collectionView cellForItemAtIndexPath:indexPath];

    cell.backgroundColor = YBLineGrayColor;

}

- (void)collectionView:(UICollectionView*)collectionView didUnhighlightItemAtIndexPath:(NSIndexPath*)indexPath{

    UICollectionViewCell* cell = [collectionView cellForItemAtIndexPath:indexPath];

// 要延时才有效果

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.25 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

        cell.backgroundColor = [UIColor whiteColor];

    });

}

相关文章

网友评论

      本文标题:UICollectionViewCell的点击效果

      本文链接:https://www.haomeiwen.com/subject/fhbgdftx.html