我已经设置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
我究竟做错了什么?