gpt4 book ai didi

ios - 如何在 iOS 上使用代码获取屏幕尺寸?

转载 作者:IT王子 更新时间:2023-10-29 07:37:59 26 4
gpt4 key购买 nike

如何获取iPhone屏幕尺寸来进行计算?

最佳答案

您可以在 UIScreen 的实例上使用 bounds 属性:

CGRect screenBound = [[UIScreen mainScreen] bounds];
CGSize screenSize = screenBound.size;
CGFloat screenWidth = screenSize.width;
CGFloat screenHeight = screenSize.height;

大多数人会想要主屏幕;如果您有一个连接到电视的设备,您可能想要遍历 UIScreens 并获取每个设备的边界。

更多信息请访问 UIScreen class docs .

关于ios - 如何在 iOS 上使用代码获取屏幕尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3635483/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com