Stop Autoresizing when UIDevice Orientation changes

2k Views Asked by At

I'm having a quite annoying problem with iOS 6.0. Everytime the IUDevice orientation changes some subviews autoresize even if not needed. In my particular case the only thing that autoresizes is UIButton, so what can i do stop this autoresize and if possible disable all autoresizes?

Cheers.

1

There are 1 best solutions below

1
On BEST ANSWER

Remove autoresizing from all subview

@By Code

[subView setAutoresizingMask:UIViewAutoresizingNone];

@By InterfaceBuilder

enter image description here