0

我创建了一个应用程序。在该应用程序中,我使用了 UIsplitDetailview 和简单的视图控制器。

我的问题是,如何在横向和纵向模式下设置 uiview 框架。UIsplitviewcontroller 仅在横向模式下。

问题是,当我改变 ipad 的方向时,uiview 设置为 null -

(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[self.view setFrame:CGRectMake(0, 0, 768,1024)]; 
[formulaScrollView setFrame:CGRectMake(0, 0,700,700)]; 
[formulaView setFrame:CGRectMake(0, 0, 768,1024)]; 
self.view.bounds=CGRectMake(0, 0,768,1024);
}
4

0 回答 0