通过iOS应用程序控制低电量模式

时间:2018-10-01 08:05:41

标签: ios battery battery-saver

我想在应用程序中打开/关闭低功耗模式。是否可以从iOS应用程序控制电池模式。

1 个答案:

答案 0 :(得分:3)

  

Apple尚未公开任何公共API以允许控制低功耗模式

但是我们可以使用以下代码检测低功耗模式,Apple Documents

中提供了详细信息

目标C

if ([[NSProcessInfo processInfo] isLowPowerModeEnabled]) {
// Low Power Mode is enabled. Start reducing activity to conserve energy.
} else {
// Low Power Mode is not enabled.
}

快速

if ProcessInfo.processInfo.isLowPowerModeEnabled {
            // Low Power Mode is enabled. Start reducing activity to conserve energy.
        } else {
            // Low Power Mode is not enabled.
        }