我想将时间从几秒钟缩短到位置格式,如 2:05分或 1:23 h 或 19 s 。我有检索本地化缩写时间单位的问题。这是我的代码。
let secs: Double = 3801
let stopWatchFormatter = DateComponentsFormatter()
stopWatchFormatter.unitsStyle = .positional
stopWatchFormatter.maximumUnitCount = 2
stopWatchFormatter.allowedUnits = [.hour, .minute, .second]
print(stopWatchFormatter.string(from: secs)) // 1:03
stopWatchFormatter.unitsStyle = .short
print(stopWatchFormatter.string(from: secs)) // 1 hr, 3 min
正如你所看到的,3801秒被格式化为1:03,这很好,但我不知道DateComponentsFormatter
是否使用了小时或分钟等。
我可能会使用简单的MOD逻辑来检查它,但后来很难实现本地化。另请注意,如果我将collapsesLargestUnit
设置为false
,则MOD解决方案毫无价值。
答案 0 :(得分:3)
DateComponentsFormatter
不直接支持您想要的格式,这种格式本质上是位置格式,但最后显示的是第一个短格式单位。
以下辅助函数将这两个单独的结果组合成您想要的结果。这应该适用于任何语言环境,但需要进行全面测试以确认。
func formatStopWatchTime(seconds: Double) -> String {
let stopWatchFormatter = DateComponentsFormatter()
stopWatchFormatter.unitsStyle = .positional
stopWatchFormatter.maximumUnitCount = 2
stopWatchFormatter.allowedUnits = [.hour, .minute, .second]
var pos = stopWatchFormatter.string(from: seconds)!
// Work around a bug where some values return 3 units despite only requesting 2 units
let parts = pos.components(separatedBy: CharacterSet.decimalDigits.inverted)
if parts.count > 2 {
let seps = pos.components(separatedBy: .decimalDigits).filter { !$0.isEmpty }
pos = parts[0..<2].joined(separator: seps[0])
}
stopWatchFormatter.maximumUnitCount = 1
stopWatchFormatter.unitsStyle = .short
let unit = stopWatchFormatter.string(from: seconds)!
// Replace the digits in the unit result with the pos result
let res = unit.replacingOccurrences(of: "[\\d]+", with: pos, options: [.regularExpression])
return res
}
print(formatStopWatchTime(seconds: 3801))
输出:
1:03小时
答案 1 :(得分:-1)
据我所知,你不需要String,但是DateComponent:
let dateA = Date(timeIntervalSince1970: 0)
let dateB = Date(timeIntervalSince1970: timeInterval)
let components = Calendar.current.dateComponents([.hour, .minute, .second], from: dateA, to: dateB)