非淡泊无以明志,非宁静无以致远。这篇文章主要讲述你能获得Apple Watch的大概电池百分比吗?相关的知识,希望能为你提供帮助。
Apple Watch是否有可以访问其大致电池寿命的对象或功能?
答案这是可能的,但仅限于WatchOS 4的发布.UIDevice仅适用于ios设备,因此它绝对与此问题无关。它的对应部分是WatchOS中的WKInterfaceDevice。
正确的解决方案是:
OBJECTIVE-C版本
float *watchBatteryPercentage = [WKInterfaceDevice currentDevice].batteryLevel;
但你必须先允许它:
[WKInterfaceDevice currentDevice].batteryMonitoringEnabled = YES;
SWIFT 4.2版本:
var watchBatteryPercentage:Int {
return Int(roundf(WKInterfaceDevice.current().batteryLevel * 100))
}
为了使它可用,你必须使用:
WKInterfaceDevice.current().isBatteryMonitoringEnabled = true
另一答案根据Sean的说法,你无法在当前的WatchKit版本中获得Apple Watch电池级别,以下代码只返回iPhone电池电量:
迅速:
var x = UIDevice.currentDevice().batteryLevel
Objective-C的:
int x = [UIDevice currentDevice].batteryLevel;
这是App Store上的Battery Adviser Apple Watch应用程序(Applestan)中使用的代码。
另一答案Swift(WatchKit 4.x)版本。请注意,您必须设置
isBatteryMonitoringEnabled = true
,否则您将无法获得有效结果。在我的情况下,我不关心后续通知,所以我立即回到假。另请注意,当前模拟器不会模拟batteryLevel / batteryState。let curDevice = WKInterfaceDevice.current()
curDevice.isBatteryMonitoringEnabled = true // Enable just long enough for data
let chargeLevel = curDevice.batteryLevel
let chargeState = curDevice.batteryState
curDevice.isBatteryMonitoringEnabled = false
另一答案【你能获得Apple Watch的大概电池百分比吗()】这应该工作:
UIDevice.currentDevice().batteryLevel
this将返回Float推荐阅读
- 如何启动App Store应用程序并导航到开发人员页面
- djangocms与apphook对象集成filer_image
- Apple标签,Apple脚本和Evernote
- 在Android的特殊时间结束视频Youtube
- android - Youtube api 400 Bad Request
- 限制为Android时,YouTube API密钥会出现500错误
- AppleScript无法获得api响应的引用形式
- YouTube Android Player API无法在xiaomi Redmi Note 3中使用
- 我们可以在React Kendo Grid Wrapper上添加虚拟滚动