UITableView Cell 弹簧动画效果

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITableView Cell 弹簧动画效果相关的知识,希望对你有一定的参考价值。

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

cell.transform = CGAffineTransformMakeTranslation(0, 40);
[UIView animateWithDuration:0.8 animations:^{

cell.transform = CGAffineTransformIdentity;
}];


}

以上是关于UITableView Cell 弹簧动画效果的主要内容,如果未能解决你的问题,请参考以下文章

具有弹簧效果的旋转动画

弹簧动画效果(系统自带方法)

使用SpringAnimation实现弹簧联动

用POP动画引擎实现弹簧动画(POPSpringAnimation)

UITableView之局部刷新的正确使用姿势

cell 滑动实现旋转动画效果