Swift nube 在 Xcode 11 上使用 Swift 5。我只是想了解我的电池状态。为此,我知道我需要启用/设置“isBatteryMonitoringEnabled”为真。我输入以下行:
WKInterfaceDevice.current().isBatteryMonitoringEnabled = true
我用这个检查状态:
let watchBatteryMonitorStatus = WKInterfaceDevice.current().isBatteryMonitoringEnabled
print("Battery Monitor Status: \(watchBatteryMonitorStatus)")
在编译期间或运行时我都没有收到警告或错误。但是没有打开电池监控。我究竟做错了什么?