“UIScreen主屏幕]applicationFrame]”对于横向模式

发布于 2024-11-28 03:10:24 字数 272 浏览 2 评论 0原文

我必须问它。使用

[[UIScreen mainScreen] applicationFrame]

是一种以纵向模式获取 iphone 或 ipad 工作区域的绝佳方式。但是,如果我想在横向上获得相同的尺寸,则需要其他代码,或者我必须创建:

CGRect landscape = CGRectMake(0, 20, 1024, 748)

这对于 iPhone 和 iPad 来说甚至不是通用的。

I have to ask it. Using

[[UIScreen mainScreen] applicationFrame]

Is a beautiful way to get the working area of the iphone or ipad in portrait mode. But, if I want get the same size in landscape, there are other code, or I will have to create:

CGRect landscape = CGRectMake(0, 20, 1024, 748)

This is even not generic for iPhone and iPad.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

携君以终年 2024-12-05 03:10:24

您可以使用 [[[UIApplication sharedApplication] keyWindow] 框架]

You can use [[[UIApplication sharedApplication] keyWindow] frame]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文