CGAffineTransformScale

CGAffineTransformScale

我在 viewDidLoad 使用此代码来缩放我的 UIImageView :

imageView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 3.0, 3.0);

现在,我想回到原来的大小,1.0

我将此操作用于 UIButton
imageView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.0, 1.0);

但不起作用。什么问题?

最佳答案

如果您只想缩放大小,使用 CGAffineTransformMakeScale 很容易,可以解决您的问题。

关于ios - CGAffineTransformScale 不会重置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20578799/

10-10 20:42