Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS devices with 120 Hz - what is the UIKit refresh rate

In most tutorials or recommendations a value of 60 fps is listed as the ultimate refresh rate for the app to aim for. I.e. if the app is able to consistently provide the user experience at 60 fps there is no more room for improvement.

However, what is the case for the newer devices, e.g. iPad Pro which have 120 Hz refresh rate? Do they actually redraw UI components 120 times per second, meaning that the time to successfully prepare a frame has went down from about 16 ms to 8 ms?

like image 740
Richard Topchii Avatar asked Nov 06 '22 17:11

Richard Topchii


1 Answers

It looks like the new devices have a maximum fps of 120 but the default is still 60. If you want to use a 120 fps you need to change the fps value.

This link might give you more informations: https://developer.apple.com/library/archive/technotes/tn2460/_index.html

I hope this will help.

like image 119
Xavier Bauquet Avatar answered Nov 15 '22 12:11

Xavier Bauquet