如何在iOS中更改[UIApplication sharedApplication] .window方向和设备

时间:2015-04-13 11:39:09

标签: ios objective-c uiview uiwindow uiapplication

在我的应用程序中,我想在AppDelegate.Window上添加UIview作为子视图。 UIView框架是(0,0,1024,768)。在窗口上添加视图后,它只覆盖屏幕的一半。

我理解的是视图尺寸是屏幕横向尺寸。窗口处于纵向模式。

1 个答案:

答案 0 :(得分:0)

尝试给出动态宽度和高度,而不是将其修复为1024和768.您可以传递类似AppDelegate.Window.bounds.width和AppDelegate.Window.bounds.height。

像。

 CGRectMake (0,0,UIScreen.mainScreen.bounds.size.width, UIScreen.mainScreen.bounds.size.height);