I have a view with many subviews. After applying the following transform
[self setTransform:CGAffineTransformMakeRotation(angle)];
I'm not able to get the updated frame of the subviews. When doing
CGRect frame = subview.frame;
It's always the original frame before transform.
How can I calculate the frame after the rotation ?
Many thanks,
Best