table 手机 滑动_tableView 滑动滑出动画

看了一些最近放出来的控件, 有些是关于UITableViewCell显示的特效.

也有朋友问我咋做. 就写了个简单的介绍.

1. UITableVIew需要实现 - (void)tableView:(UITableView *)tableView willDisplayCell:(TestTableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath

- (void)tableView:(UITableView *)tableView willDisplayCell:(TestTableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

[cell animationForIndexPath:indexPath];

}

2. UITableViewCell需要实现 - (void)animationForIndexPath:(NSIndexPath *)indexPath

- (void)animationForIndexPath:(NSIndexPath *)indexPath {

int row = indexPath.row;

float radians = (120 + row*30)%360;

radians = 20;

CALayer *layer = [[self.layer sublayers] objectAtIndex:0];

// Rotation Animation

CABasicAnimation *animation  = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];

animation.fromValue =@DEGREES_TO_RADIANS(radians);

animation.toValue = @DEGREES_TO_RADIANS(0);

// Opacity Animation;

CABasicAnimation *fadeAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"];

fadeAnimation.fromValue = @0.1f;

fadeAnimation.toValue = @1.f;

// Translation Animation

CABasicAnimation *translationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.translation.x"];

;

translationAnimation.fromValue = @(-300.f * ((indexPath.row%2 == 0) ? -1: 1));

translationAnimation.toValue = @0.f;

CAAnimationGroup *animationGroup = [CAAnimationGroup animation];

animationGroup.duration = 0.4f;

animationGroup.animations = @[animation,fadeAnimation,translationAnimation];

animationGroup.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

[layer addAnimation:animationGroup forKey:@"spinAnimation"];

}

3. 对应的宏

#define DEGREES_TO_RADIANS(d) (d * M_PI / 180)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值