iOS 自定义电池图标的时候,获取剩余电量的方法。
[UIDevice currentDevice].batteryMonitoringEnabled = YES;
double deviceLevel = [UIDevice currentDevice].batteryLevel;
如果值是-1的话,表示用的是模拟器
iOS 自定义电池图标的时候,获取剩余电量的方法。
[UIDevice currentDevice].batteryMonitoringEnabled = YES;
double deviceLevel = [UIDevice currentDevice].batteryLevel;
如果值是-1的话,表示用的是模拟器