框架未在旋转中设置

时间:2012-04-30 11:10:01

标签: iphone cocoa-touch ipad uiview uisplitviewcontroller

我创建了一个应用程序。在该应用程序中,我使用了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);
}

0 个答案:

没有答案