Is it possible to set the transform identity to the current transformed state? My concern is with using auto layout and that once a transformation is applied the frame is now undefined. This is all just an abstract thought process and might not actually be an issue.
Let's say I apply a CGAffineTransformMakeScale(1,-1)
to flip a UIView
that is a subView of some superView. Now that I have applied a transformation to the subView the frame: now becomes undefined so how is that going to affect the size and placement of the subView in the superView if I resize the superView?
My thought process tells me that if I can set "CGAffineTransformIdentity" to the current transformed state (for example after flipping or rotating) that any auto layout I've set up will be handled correctly but if this is not set i will not get appropriate auto layout handling.
So do I need to worry about the frame: being undefined or will the auto layout use the bounds: of the transformed view?