Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写我的第一个 iPad 应用程序。我遇到的第一个问题是不同方向的屏幕尺寸。
当我尝试使用这两个时:
view.frame
或者
view.bounds
我得到了纵向模式的屏幕分辨率。请注意,我需要大尺寸和迷你 iPad 屏幕尺寸。我也尝试过使用 mainScreen 但我得到与上述代码相同的结果。
干得好
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { CGFloat width = CGRectGetWidth(self.view.bounds); }
如果这对您有帮助,请标记为答案/投票。