0

私のアプリにはバッテリー レベル インジケーターが含まれており、バッテリー レベル インジケーター ページにいる間にアプリを更新したいと考えています。現在、アプリをその画面で開いたままにし、バッテリー レベルが (5% 以上) 変化すると、アプリがクラッシュします。そのためには、コードに何を追加する必要がありますか? これが私のコードです:

- (void)viewDidLoad {
[super viewDidLoad];

deviceType.text = [[UIDevice currentDevice] model];

[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];
[[UIDevice currentDevice] batteryLevel];

// Enable monitoring of battery status
[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];

// Request to be notified when battery charge or state changes
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(batteryStatus) name:UIDeviceBatteryLevelDidChangeNotification object:nil];
}

- (void) viewWillAppear:(BOOL)animated {
UIDevice *device = [UIDevice currentDevice];
device.batteryMonitoringEnabled = YES;
LabelBatteryStatus.text = [NSString stringWithFormat:@"%.0f%%", device.batteryLevel * 100];
[device addObserver:self forKeyPath:@"batteryLevel" options:0x0 context:nil];
[super viewWillAppear:animated];
}

- (void) viewDidDisappear:(BOOL)animated {
UIDevice *device = [UIDevice currentDevice];
device.batteryMonitoringEnabled = NO;
[device removeObserver:self forKeyPath:@"batteryLevel"];
[super viewDidDisappear:animated];
}

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
UIDevice *device = [UIDevice currentDevice];
if ([object isEqual:device] && [keyPath isEqual:@"batteryLevel"]) {
    LabelBatteryStatus.text = [NSString stringWithFormat:@"%.0f%%", device.batteryLevel * 100];
}
}

このコードは、ページをロードおよびアンロードするときにアプリで機能しますが、ページ上でも機能するようにしたいと考えています。

よろしくお願いします。

4

0 に答える 0