是否可以找到 iPhone 的刷新率?
我想知道是否可以以编程方式找到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信 iPhone 屏幕刷新率固定为 60Hz,但您可以使用 CADisplayLink API,每当屏幕更新时,它都会调用您选择的选择器
使用类似以下内容:
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:
是的,这是可能的。在 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."