作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在应用程序中打开/关闭低功耗模式。是否可以从iOS应用程序控制电池模式。
最佳答案
苹果尚未公开任何 public API来允许控制低功耗模式。
但是我们可以使用以下代码检测低功耗模式,Apple Documents中提供了详细信息
objective-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.
}
关于ios - 通过iOS应用程序控制低电量模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52586894/
今年11月份,小米推出了小米手表,号称是腕上“小型手机”,功能性大增的同时也减少了续航时间,官方公布的续航时间为36小时。今天,小米又公布了一款小米手表Color,表盘由方变圆,续航时间也大大增加了
这个问题已经有答案了: Determine accurate iPhone battery level (1 个回答) 已关闭 9 年前。
本文实例讲述了android电源信息查看方法。分享给大家供大家参考。具体如下: 1. PowerTestActivity: ?
我正在编写一个 react 原生应用程序来获取 IOS 和 Android 电池状态。我在网上搜索,发现很少有可以获取手机电池电量的库。 https://github.com/robinpowered
我是一名优秀的程序员,十分优秀!