DateComponentsFormatter可以格式化小数秒吗?

时间:2017-04-08 07:54:34

标签: macos foundation nsdatecomponents nsdatecomponentsformatter

我想打印,例如,价值1.5为" 1.5秒",就像Safari的时间轴一样,我想尝试使用DateComponentsFormatter。

不幸的是,它的.second只会下降到.nanosecond(即使枚举有.allowsFractionalUnits = true)。我尝试设置removeLineFromFile,但我仍然得到" 0秒"。

有没有办法从DateComponentsFormatter中获得小数秒?

1 个答案:

答案 0 :(得分:0)

对于位置单位样式,DateComponentsFormatter可以与NumberFormatter一起使用以获取可识别语言环境的字符串。

func format(_ seconds: TimeInterval) -> String {
  let components = DateComponentsFormatter()
  components.allowedUnits = [.minute, .second]
  components.allowsFractionalUnits = true // does not work as expected
  components.unitsStyle = .positional
  components.zeroFormattingBehavior = .pad

  let fraction = NumberFormatter()
  fraction.maximumIntegerDigits = 0
  fraction.minimumFractionDigits = 0
  fraction.maximumFractionDigits = 3
  fraction.alwaysShowsDecimalSeparator = false

  let fractionalPart = NSNumber(value: seconds.truncatingRemainder(dividingBy: 1))

  return components.string(from: seconds)! + fraction.string(from: fractionalPart)!
}

print(Locale.current) // ru_RU (current)
print(format(600.5))  // 10:00,5 <- note locale specific decimal separator

不幸的是,将这种方法用于其他日期样式更加困难。