- (void)tableView:(UITableView *)tableView
willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.transform = CGAffineTransformMakeTranslation(0, 10);
[UIView animateWithDuration:0.2 animations:^{
cell.transform = CGAffineTransformIdentity;
}];
}
标签:动画,tableView,iOS,transform,cell,UITableViewCell
From: https://www.cnblogs.com/CH520/p/15022194.html