CATransition *animation = [CATransition animation];
animation.delegate = self;
animation.duration = 1.0f;
animation.timingFunction = [CAMediaTimingFunction
functionWithName:kCAMediaTimingFunctionEaseIn];
animation.type = @"pageCurl";
animation.subtype = kCATransitionFromRight;
UIView *v = [cell.contentView.subviews objectAtIndex:0];
[view.tableView.layer addAnimation:animation forKey:@"animation"];
animation.delegate = self;
animation.duration = 1.0f;
animation.timingFunction = [CAMediaTimingFunction
functionWithName:kCAMediaTimingFunctionEaseIn];
animation.type = @"pageCurl";
animation.subtype = kCATransitionFromRight;
UIView *v = [cell.contentView.subviews objectAtIndex:0];
[view.tableView.layer addAnimation:animation forKey:@"animation"];