我正在写我的第一个iPad应用程序。我遇到的第一个问题是不同方向的屏幕尺寸。当我尝试使用这两个:
view.frame
或者是
view.bounds
我得到了肖像模式的屏幕分辨率。注意,我需要大和迷你iPad屏幕尺寸。我也试过使用mainScreen,但我得到的结果与上面的代码相同。
mw3dktmi1#
给你
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { CGFloat width = CGRectGetWidth(self.view.bounds); }
1条答案
按热度按时间mw3dktmi1#
给你