这看起来应该很容易,但我今晚无法弄清楚并且一直在搜索,但没有在论坛上找到任何相关内容。
我想要做的就是更改UIImageView的缩放比例以缩小或增大它。
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
image.whatDoIDoToMakeItGrowOrShrink?=)
[UIView commitAnimations];
答案 0 :(得分:20)
imageView.transform = CGAffineTransformMakeScale(0.5f, 0.5f); // shrink to half.