Swift version: 5.6
You can – and should – read the thermal state of your device before doing any intensive work, because if the system is already under pressure you might find your app becomes unresponsive, even with basic things like animations.
You can read the current thermal state using ProcessInfo.processInfo.thermalState
, which has four values:
.nominal
you can proceed as normal and do all the work you want..fair
you should consider delaying any work that isn’t visible to users..serious
the system is working at high capacity and you should scale back the CPU, GPU, and I/O work you do..critical
the system is unable to keep up with all the work that is being done, so your user interface is likely to stutter – now is a bad time to do any sort of animation.The latter two of those are important to monitor, because users will notice – at .critical
level you can expect their device to be hot to the touch, so hopefully your app isn’t the cause of that!
SPONSORED From March 20th to 26th, you can join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.