动画 - 日益缩小的图像尺度

时间:2010-11-02 07:58:24

标签: iphone image animation uiimageview scaling

这看起来应该很容易,但我今晚无法弄清楚并且一直在搜索,但没有在论坛上找到任何相关内容。

我想要做的就是更改UIImageView的缩放比例以缩小或增大它。

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];

image.whatDoIDoToMakeItGrowOrShrink?=)

[UIView commitAnimations];

1 个答案:

答案 0 :(得分:20)

imageView.transform = CGAffineTransformMakeScale(0.5f, 0.5f); // shrink to half.