标签: ios cocoa foundation
Apple为我们提供了一种从Measurement到字符串的相当不错的方法:
MeasurementFormatter().string( from: measurement )
我正尝试朝相反的方向:给定用户提供的字符串,我想将其解析并将其转换为Measurement对象。 [例如,将“ 2cm”转换为Measurement(value: 2.0, unit: UnitLength.centimeters)]
Measurement(value: 2.0, unit: UnitLength.centimeters)
Apple在这里提供任何帮助吗,或者有人知道已经这样做的图书馆吗?