tableView//collectionView加载时的动画

来源:互联网 发布:学琵琶 知乎 编辑:程序博客网 时间:2024/06/08 12:23

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

    ProjectIntroViewCell *cell = [collectionViewdequeueReusableCellWithReuseIdentifier:COLLECTIONVIEW_CELLIDforIndexPath:indexPath];

    [cell updateUIWithModel:model];

//    cell.layer.transform = CATransform3DMakeScale(0.1, 0.1, 1);

//    //设置动画时间为0.25,xy方向缩放的最终值为1

//    [UIView animateWithDuration:0.25 animations:^{

//        cell.layer.transform = CATransform3DMakeScale(1, 1, 1);

//    }];

    return cell;

}

0 0
原创粉丝点击