iOS/macOS
FAQ
How do I enable support for ProMotion displays?
Support for ProMotion on iOS requires two things:
- Using an API in the iOS runtime to set the desired FPS (range)
- Adding an additional entry into your app’s
Info.plist
file
Example Usage
Additionally, add the following to your app’s Info.plist
file:
<key>CADisableMinimumFrameDurationOnPhone</key><true/>
You can view more information about preferred FPS here, and about preferred FPS range here.
Was this page helpful?