美文网首页
tableView简单缩放动画

tableView简单缩放动画

作者: 码农淏 | 来源:发表于2016-12-18 22:23 被阅读46次

    效果图(真机效果好一点.毕竟 gif)


    tableView动画.gif

    代码

    - (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath{
            cell.layer.transform = CATransform3DMakeScale(0.1, 0.1, 1);
            [UIView animateWithDuration:0.5 animations:^{
                cell.layer.transform = CATransform3DMakeScale(1, 1, 1);
            }];
    }
    

    相关文章

      网友评论

          本文标题:tableView简单缩放动画

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