gpt4 book ai didi

ios - 你能得到 Apple Watch 的大概电量百分比吗?

转载 作者:搜寻专家 更新时间:2023-10-31 22:35:36 25 4
gpt4 key购买 nike

Apple Watch 是否有可以获取其大调用池生命周期的对象或功能?

最佳答案

这是可能的,但只是从 WatchOS 4 的发布开始。UIDevice 仅适用于 iOS 设备,因此它与这个问题绝对无关。它的对应物是 WatchOS 中的 WKInterfaceDevice。

正确的解决方法是:

OBJECTIVE-C version

float *watchBatteryPercentage = [WKInterfaceDevice currentDevice].batteryLevel;

但你必须先允许它:

[WKInterfaceDevice currentDevice].batteryMonitoringEnabled = YES;

SWIFT 4.2 version:

var watchBatteryPercentage:Int {
return Int(roundf(WKInterfaceDevice.current().batteryLevel * 100))
}

要使其可用,您必须使用:

WKInterfaceDevice.current().isBatteryMonitoringEnabled = true

关于ios - 你能得到 Apple Watch 的大概电量百分比吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29255929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com