cocos / engine-native

Native engine for Cocos Creator v2.x

Home Page:http://www.cocos.com/en/products

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

2.4.10 issue of getBatteryLevel on iOS

sianzain opened this issue · comments

如果ios沒有開啟監控電池
[UIDevice currentDevice].batteryMonitoringEnabled = YES;
取到的 [UIDevice currentDevice].batteryLevel 為 -1

修正代碼如下
CCDevice-ios
float Device::getBatteryLevel()
{
[UIDevice currentDevice].batteryMonitoringEnabled = YES;
return [UIDevice currentDevice].batteryLevel;
}

commented

@mmyduckx please take a look.
@sianzain please use english in future, thanks

Verified. Fixed in #4305 and thanks for your contribution.