UIView在使用CGAffineTransformMakeScale进行缩放时旋转

时间:2011-06-02 18:02:48

标签: iphone objective-c ipad ios4

我使用CGAffineTransformMakeScale将UIView从0.1扩展到1.0。

问题是在缩放动画时视图也在旋转。因此,它以1.0和90º的旋转结束。

[self presentModalViewController:slideTwoViewController animated: NO];
[slideTwoViewController.view setTransform:CGAffineTransformMakeScale(0.1,0.1)];
[UIView beginAnimations: nil context: nil];
[UIView setAnimationDuration:2.0];
[slideTwoViewController.view setTransform:CGAffineTransformMakeScale(1.0,1.0)];
[UIView commitAnimations];

初始应用方向是横向左侧。因此,当动画结束时,UIView看起来像是肖像。

这应该发生吗?我错过了什么吗?

由于

2 个答案:

答案 0 :(得分:3)

我的赌注是,视图已经有了一个变换集,你用新的变换覆盖了它,它正在为这个差异设置动画。

请尝试使用以下功能:

CGAffineTransformScale(<#CGAffineTransform t#>, <#CGFloat sx#>, <#CGFloat sy#>)

使用此功能,您可以传递原始变换slideTwoViewController.view.transform和比例因子。

slideTwoViewController.view.transform = CGAffineTransformScale(slideTwoViewController.view.transform, 0.1, 0.1);

答案 1 :(得分:0)

尽管扩展了rootview,但尝试添加子视图,该子视图将成为新的伪rootview(其余所有子视图都连接在下面)然后缩放伪rootview。这样就可以避免系统在真实的根视图上进行任何变换冲突(例如自动旋转),然后就可以自由使用CGAffineTransformMakeScale。