I’m adding a subview to the UiView of my mainviewcontroller, that is presented in a similar way as a UIModalViewController with the Formsheet-style. (so it doesn’t fill teh whole screen)
No if the device rotates the subview somehow gets resized to fill the whole mainview…
Even if I manually set:
subViewCtrl.view.autoresizingMask = UIViewAutoresizingNone;
it still autoresizes.
Why can’t it simple stay in the middle as any other subview would?
Ok, I figured it out myself.
I accidentally did
so I changed this too
and it worked as intended. Thanks anyway!
Of course, then one also has to set
otherwise it doesn’t get centered properly when the interface rotates.