始终[myDevice batteryLevel]
返回-1,[myDevice batterystate]
返回0(进入默认情况)。
我怎样才能得到正确的值?。有人可以帮我解决这个问题吗?。下面是我的代码。(始终将batteryLeft打印为“-100%”,电池状态为“未知”)。
代码:
UIDevice *myDevice = [UIDevice currentDevice];
[myDevice setBatteryMonitoringEnabled:YES];
float batLeft = [myDevice batteryLevel]*100;
int status=[myDevice batteryState];
NSLog(@"level:%0.0f",batLeft);
NSString *status_str;
switch (status)
{
case UIDeviceBatteryStateUnplugged:
{
NSLog(@"UnpluggedKey");
status_str=@"UnPlugged";
break;
}
case UIDeviceBatteryStateCharging:
{
NSLog(@"ChargingKey");
status_str=@"Charging";
break;
}
case UIDeviceBatteryStateFull:
{
NSLog(@"FullKey");
status_str=@"BatteryFul";
break;
}
default:
{
NSLog(@"UnknownKey");
status_str=@"Unknown";
break;
}
}
NSLog(@"Battery status:%@",status_str);
答案 0 :(得分:8)
您的代码看起来没问题,这与我在其中一个应用中使用的相同:
-(void) battery
{
UIDevice *myDevice = [UIDevice currentDevice];
[myDevice setBatteryMonitoringEnabled:YES];
int state = [myDevice batteryState];
NSLog(@"battery status: %d",state); // 0 unknown, 1 unplegged, 2 charging, 3 full
double batLeft = (float)[myDevice batteryLevel] * 100;
NSLog(@"battery left: %ld", batLeft);
}
您的问题可能是您在模拟器中尝试此操作,但无法正常工作。
尝试一个真实的设备。
答案 1 :(得分:3)
我希望你不要在你的模拟器上检查它:)
您无法获得设备的准确电池电量,它总是0.05的倍数。这意味着如果您的设备电池电量为78%,那么它将显示75%。
如果您需要准确的电池电量指示,则可以点击以下链接:http://blog.coriolis.ch/2009/02/14/reading-the-battery-level-programmatically/