ゲームを作っています。
携帯電話のバッテリーが 60% 未満の場合、歩留まりの減少は 60 - 現在のバッテリー%
だから、私の質問は: iOS でバッテリー % に関する情報を取得できますか?
ゲームを作っています。
携帯電話のバッテリーが 60% 未満の場合、歩留まりの減少は 60 - 現在のバッテリー%
だから、私の質問は: iOS でバッテリー % に関する情報を取得できますか?
NSArray *stateArray = @[@"Battery state is unknown",
@"Battery is not plugged into a charging source",
@"Battery is charging",
@"Battery state is full"];
NSString *status = [NSString stringWithFormat:@"Battery state: %@, Battery level: %0.2f%%",
stateArray[[UIDevice currentDevice].batteryState],
[UIDevice currentDevice].batteryLevel * 100];
NSLog(@"%@", status);
バッテリーの充電を取得する場合は、これを使用します[UIDevice currentDevice].batteryLevel
float 0.0 - 1.0 を返します。