是否可以找到 iPhone 的刷新率?

发布于 2024-11-04 20:41:04 字数 96 浏览 0 评论 0原文

我想知道是否可以以编程方式找到 iPhone 屏幕的刷新率。我已经搜索过,但没有发现可用的私有 API。

有什么办法可以查出这一点吗?

提前致谢。

I want to know if it is possible to find the refresh rate for the iPhone screen, programmatically. I have searched, but have found no private API available.

Is there any way to find this out?

Thanks in advance.

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

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

发布评论

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

评论(2

夏了南城 2024-11-11 20:41:04

我相信 iPhone 屏幕刷新率固定为 60Hz,但您可以使用 CADisplayLink API,每当屏幕更新时,它都会调用您选择的选择器

使用类似以下内容:

CADisplayLink *displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(update)];
[displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];

I believe the iPhone screen refresh rate is fixed to 60Hz, but you can test this yourself using the CADisplayLink API which will call a selector you choose whenever the screen is updated

Use something like:

CADisplayLink *displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(update)];
[displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
烟雨凡馨 2024-11-11 20:41:04

是的,这是可能的。在 iOS 10.3+ 上,您可以使用 UIScreen.maximumFramesPerSecond 来获取“屏幕每秒能够播放的最大帧数。”

Yes, it's possible. On iOS 10.3+ you can use UIScreen.maximumFramesPerSecond to get "The maximum number of frames per second of which the screen is capable."

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