メソッドを設定UIInterfaceOrientationMaskAll
しました。supportedInterfaceOrientations
プレゼンテーションをUIModalViewController
行うと、画面の回転に関係なく、常にビューのサイズが 748 x 1024 になります。画面を回転すると、寸法が更新されず、縦向きモードと横向きモードで同じ 748 x 1024 になります。
これは、モーダル ビューを表示するコードです。
MyModalViewController *myModal = [[MyModalViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:myModal animated:YES];
MyModalViewController は、次のサブクラスである別の MyCUSTOMViewController を拡張しますUIViewController
。
@interface MyModalViewController : MyCUSTOMViewController
@interface MyCUSTOMViewController : UIViewController
私は何を間違っていますか?