0

我正在编写我的第一个 iPad 应用程序。我遇到的第一个问题是不同方向的屏幕尺寸。

当我尝试使用这两个时:

view.frame 

或者

view.bounds

我得到了纵向模式的屏幕分辨率。请注意,我需要大尺寸和迷你 iPad 屏幕尺寸。我也尝试过使用 mainScreen 但我得到与上述代码相同的结果。

4

1 回答 1

0

干得好

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation 
{
    CGFloat width = CGRectGetWidth(self.view.bounds);
}

如果这对您有帮助,请标记为答案/投票。

于 2013-10-18T17:12:29.657 回答