如何查看iphone电池的最大容量和当前可用容量?
在我的应用程序中,我可以使用 [[UIDevice currentdevice] Batterylevel]
找到电池电量,它仅在 3.0 或更高版本中工作。我不知道如何找到电池的最大容量和当前可用容量。另外,如何在iOS 2.0中找到电池电量和电池状态?
In my application I can find the battery level using [[UIDevice currentdevice] batterylevel]
, it is working only in 3.0 or later versions. I don't know how to find the maximum capacity and currently available capacity of battery. Also, how can I find the battery level and battery status in iOS 2.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有公开的方法可以找到电池容量,在 iOS 3.0 之前也没有办法找到充电水平。如果您想使用私有 API,您可以使用诸如 这个。
There is no publicly available way to find the battery capacity, and no way to find the charge level before iOS 3.0. If you want to use private APIs, you might be able to use code such as this.