-(void)tableView:(UITableView
*)tableView willDisplayCell:(UITableViewCell
*)cell forRowAtIndexPath:(NSIndexPath
*)indexPath{
cell.layer.transform = CATransform3DMakeScale(0.1, 0.1, 1);
cell.layer.transform = CATransform3DMakeScale(0.1, 0.1, 1);
[UIView
animateWithDuration:0.5
animations:^{
cell.layer.transform
=
CATransform3DMakeScale(1,
1,
1);
}];
}