标签:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.transform = CGAffineTransformMakeTranslation(0, 40);
[UIView animateWithDuration:0.8 animations:^{
cell.transform = CGAffineTransformIdentity;
}];
}
标签:
原文地址:http://www.cnblogs.com/myios/p/5628013.html