swift-秒数转时分秒格式(DateComponentsFormatter)

 func FormatDate(second:Int) -> String{
    let formatter = DateComponentsFormatter()
    //.pad为0:00:00格式 其他的我测试为 当时分秒任意为0时省略
    formatter.zeroFormattingBehavior = .pad
    formatter.allowedUnits = NSCalendar.Unit(rawValue: NSCalendar.Unit.hour.rawValue | NSCalendar.Unit.minute.rawValue | NSCalendar.Unit.second.rawValue)
    //positional 00:16:40
    //abbreviated 0小时16分钟40秒
    //short 0小时16分钟40秒
    //full 0小时16分钟40秒钟
    //spellOut 〇小时十六分钟四十秒钟
    //brief 0小时16分钟40秒formatter.unitsStyle = DateComponentsFormatter.UnitsStyle.positional
    return formatter.string(from: TimeInterval(second)) ?? ""
}

你可能感兴趣的:(swift-秒数转时分秒格式(DateComponentsFormatter))