vote up 0 vote down star

How can I manually rotate a view using the autoresizingMasks, as if the user had rotated the phone and it had auto-rotated. Also I want it to be instant, no animation. I you want to know why I need this, look at my other question at http://stackoverflow.com/questions/1219988/iphone-dev-keeping-interface-rotation.

Thanks!!

flag

1 Answer

vote up 0 vote down check

What you want to do here is use Affine transforms to rotate your View, I have accomplished this though i dont have the code infront of me at the moment. If you do a simple rotation youll find that your view will be cut off and not in the center like youd want, what you need to do here is set the anchor of your layer (play around with the value till you get what you want) in order for the view to appear where you want it. The way to approach this is just do the 90 degree affine transform rotation and see the effects it has on the view. This way you should be able to figure out where you layers anchor needs to be. Ill post some sample code here later when I am infront of my mac. Hope it helps

link|flag
Will I be able to rotate a view using it and its contents autoresizingMasks? And how do I do an affine transform? – Mk12 Aug 3 at 17:05
No you wont, you will have t o do the resizing yourself, look up affine transforms in the apple site they have something here developer.apple.com/iphone/library/… – Daniel Aug 3 at 17:38
i guess i misread your question about the autoreszingmasks – Daniel Aug 3 at 17:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.