开发者

How can I prevent skew when scaling a UIView in one direction after rotation?

开发者 https://www.devze.com 2023-03-23 12:13 出处:网络
I\'m rotating a UIView in the following manner: CGAffineTransform currentTransform = [gestureRecognizer view].transform;

I'm rotating a UIView in the following manner:

CGAffineTransform currentTransform = [gestureRecognizer view].transform;    
CGAffineTransform newTransform = CGAffineTransformRotate(currentTransform,rotation);
[[gestureRecognizer view] setTransform:newTransform]; 

and I would like to scale one dimension of this view (width or height) after rotation. However, if I do the following:

CGAffineTransformScale(self.parent.parentWidget.transform,sX, 1);

I end up with a skewed view. How do I prevent this and make it so that one dimension can be resized after rotation?

An example of this in action is in Keynote, where you can rotate an element, and then after rota开发者_如何学运维tion grab one selection handle and resize that element in just that direction.


Your problem is one of the order in which you are applying your transforms. If you attempt to scale your view in one dimension after it has been rotated, you won't produce the desired effect. Your scaling will occur in the X or Y dimension of the final, rotated object, not based on its original coordinate system.

To achieve this effect, you'll need to create a transform where the scaling is applied before the rotation, then set that to your view. This may require you to track your UIView's rotation and scaling, so that you can regenerate a new transform every time one of these values changes.


Your view will always skew if you use

CGAffineTransformScale(self.parent.parentWidget.transform,sX, 1);

Try to scale both x and y by the same value:

CGAffineTransformScale(self.parent.parentWidget.transform,sX, sX);
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号