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;
}];


}

原文地址:https://www.cnblogs.com/myios/p/5628013.html