如何获取iOS设备屏幕的高度和宽度[重复]
Posted
技术标签:
【中文标题】如何获取iOS设备屏幕的高度和宽度[重复]【英文标题】:How to get iOS device screen height and width [duplicate] 【发布时间】:2012-12-17 14:19:24 【问题描述】:可能重复:IPhone/IPad: How to get screen width programmatically?How to get orientation-dependent height and width of the screen?
考虑到各种 ios 设备和方向,获取当前屏幕分辨率(包括高度和宽度)的最简单方法是什么?
【问题讨论】:
或者How to get orientation-dependent height and width of the screen?。 给你:***.com/questions/3655104/… 这些技术都不适合我。 究竟是什么不起作用?如果您不告诉我们您的实际问题是什么,我们将无法帮助您。 @KurtRevis 感谢您的反馈。我现在意识到我没有考虑到在横向中,高度实际上变成了宽度。 【参考方案1】:UIScreen
是你的朋友。
CGRect screenRect = [[UIScreen mainScreen] bounds];
CGFloat screenWidth = screenRect.size.width;
CGFloat screenHeight = screenRect.size.height;
【讨论】:
谢谢。我现在意识到我没有考虑到在横向中,高度实际上变成了宽度。 如果你将上面的内容与 UIDevice 结合起来,你会得到一个很好的 ENUM,它可以准确地告诉你设备的方向。UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation;
【参考方案2】:
CGRect screenBounds = [[UIScreen mainScreen] bounds];
这将为您提供整个屏幕的分辨率(以点为单位),因此对于 iPhone,它通常为 320x480。即使 iPhone4 的屏幕尺寸更大,iOS 仍然返回 320x480 而不是 640x960。这主要是因为较旧的应用程序出现故障。
希望对你有帮助..
【讨论】:
以上是关于如何获取iOS设备屏幕的高度和宽度[重复]的主要内容,如果未能解决你的问题,请参考以下文章