HealthKit 测量单位类型 (HKUnit)
在使用Apple的HealthKit读取或写入健康数据时,我经常遇到不同类型的HKSampleObject的单位转换问题。
获取 HKQuantitySample 类型的 healthData 后,如何将其转换为 double 或任何其他类型?
While working with Apple's HealthKit to read or write health data, I've frequently come across one issue of unit conversion for different type of HKSampleObject.
After fetching healthData in HKQuantitySample type, how to convert it in double or any other type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Apple 的 HKUnit doc 中,他们提到您可以通过任何 SI 或非 SI 进行转换SI 单位功能。
这里有一些带有单位转换的 HKQuantitySample:
注意(感谢 ramddy 的回答):您可以使用一些通用类构造各种类型的 HKUnits通过 HealthKit 提供的方法。
例如,您可以使用:
或:
In Apple's doc for HKUnit they mention that you can convert it through any SI or non-SI units functionality.
here's some HKQuantitySample with unit conversion:
Note (thanks to ramddy's answer) : You can construct various types of HKUnits using some common class methods made available through HealthKit.
for example you can use:
or: