码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView滑动动画+FPSLabel

时间:2015-12-08 14:22:27      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

主要使用了tableView的代理方法

行将要显示的时候

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(nonnull NSIndexPath *)indexPath

代码:

   cell.contentView.alpha = 0.3;
    CGAffineTransform transformScale = CGAffineTransformMakeScale(0.3,0.8); //缩放
    CGAffineTransform transformTranslate = CGAffineTransformMakeTranslation(0.5, 0.6);//改变位置
    
    cell.contentView.transform = CGAffineTransformConcat(transformScale, transformTranslate);
    [tableView bringSubviewToFront:cell.contentView];
    [UIView animateWithDuration:.4f
                          delay:0.05
                        options:UIViewAnimationOptionAllowUserInteraction
                     animations:^{
                         
                         cell.contentView.alpha = 1;
                         
                         //清空 transform
                         
                         cell.contentView.transform = CGAffineTransformIdentity;
                     } completion:nil];

效果图:

技术分享

github连接:

https://github.com/WuJiForFantasy/CellAnimation

 

UITableView滑动动画+FPSLabel

标签:

原文地址:http://www.cnblogs.com/hxwj/p/5028804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!