我试图让我的图像看起来像是被踩踏或“压扁”。这是我必须到目前为止的代码,但不仅仅是挤压,它还将底部向上推(因为它是一个缩放动画)。有没有办法让图像简单地缩短而不是缩小?也许我需要使用两个图像?:
[UIView animateWithDuration:0.25 delay:0 options:UIViewAnimationOptionCurveEaseInOut
animations:^{
basketView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1, 0.9);}
completion:^(BOOL finished){if (finished){
[UIView animateWithDuration:0.25 delay:0 options:UIViewAnimationOptionCurveEaseInOut
animations:^{
basketView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.0, 1.0);}
completion:NULL];}}];