所以我一直在寻找这个解决方案,并没有看到任何我正在寻找的东西。这个问题似乎是正确的想法,但答案不起作用:Here。我觉得有一个我找不到的超级简单的答案。
无论如何,我有一个UIImageView,当我尝试使用
时[UIView animateWithDuration:0.5
animations:^
{
uv.transform = CGAffineTransformMakeScale(1.1,1.1);
}
completion:^(BOOL finished)
{
[UIView animateWithDuration:0.5
animations:^
{
uv.transform = CGAffineTransformMakeScale(1.0,1.0);
}];
}
];
图像从左上角缩放(即向下和向右延伸)。我希望它能够向各个方向伸展,而不仅仅是两个方向。我认为这与bounds
,center
或其他UIImageView
特征有关。
答案 0 :(得分:0)
在动画之前和之中设置view.center。