バッテリー残量
UIDeviceクラスのbatteryMonitoringEnabledをYESの状態にし、
UIDeviceクラスのbatteryLevelでバッテリーの残量を0〜1の値で取得できる。
[UIDevice currentDevice].batteryMonitoringEnabled = YES; NSLog(@"BAT %f",[UIDevice currentDevice].batteryLevel);
バッテリー状態
UIDeviceクラスのbatteryMonitoringEnabledをYESの状態にし、
UIDeviceクラスのbatteryStateでバッテリーの状態を取得できる。
UIDeviceBatteryStateUnknown バッテリー状態取得不能
UIDeviceBatteryStateUnplugged バッテリー使用中
UIDeviceBatteryStateCharging バッテリー充電中
UIDeviceBatteryStateFull バッテリーフル充電状態
[UIDevice currentDevice].batteryState = YES; if ([UIDevice currentDevice].batteryState) == UIDeviceBatteryStateUnknown) { // バッテリー状態取得不能 } if ([UIDevice currentDevice].batteryState) == UIDeviceBatteryStateUnplugged) { // バッテリー使用中 } if ([UIDevice currentDevice].batteryState) == UIDeviceBatteryStateCharging) { // バッテリー充電中 } if ([UIDevice currentDevice].batteryState) == UIDeviceBatteryStateFull) { // バッテリーフル充電状態 }
- 作者: 高山恭介,広部一弥,松浦晃洋
- 出版社/メーカー: 秀和システム
- 発売日: 2010/03/23
- メディア: 単行本
- 購入: 15人 クリック: 286回
- この商品を含むブログ (7件) を見る