iOS开发_UITableViewCell动画
- (void)tableView:(UITableView *)tableView
willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.transform = CGAffineTransformMakeTranslation(0, 10);
[UIView animateWithDuration:0.2 animations:^{
cell.transform = CGAffineTransformIdentity;
}];
}