no go
I add a bunch of subviews to my view to add some buttons, and trying to have the buttons rotated without having to do a transform on each one, not getting anywhere.
CGAffineTransform rotate = CGAffineTransformMakeRotation(1.57079633);
[myView setTransform:rotate];
and it has no effect on the subviews that were added. what about this mysterious sublayerTransform method?
|