답변:
밝히다
func secondsToHoursMinutesSeconds (seconds : Int) -> (Int, Int, Int) {
return (seconds / 3600, (seconds % 3600) / 60, (seconds % 3600) % 60)
}
사용하다
> secondsToHoursMinutesSeconds(27005)
(7,30,5)
또는
let (h,m,s) = secondsToHoursMinutesSeconds(27005)
위 함수는 Swift 튜플을 사용하여 한 번에 세 개의 값을 반환합니다. let (var, ...)
구문을 사용하여 튜플을 구조화하거나 필요한 경우 개별 튜플 멤버에 액세스 할 수 있습니다.
실제로 단어 Hours
등 으로 인쇄 해야하는 경우 다음과 같이 사용하십시오.
func printSecondsToHoursMinutesSeconds (seconds:Int) -> () {
let (h, m, s) = secondsToHoursMinutesSeconds (seconds)
print ("\(h) Hours, \(m) Minutes, \(s) Seconds")
}
참고 위의 구현이 secondsToHoursMinutesSeconds()
를위한 일 Int
인수. Double
버전 을 원한다면 반환 값이 무엇인지 (Int, Int, Double)
또는 결정해야 할지를 결정해야합니다 (Double, Double, Double)
. 당신은 다음과 같은 것을 시도 할 수 있습니다 :
func secondsToHoursMinutesSeconds (seconds : Double) -> (Double, Double, Double) {
let (hr, minf) = modf (seconds / 3600)
let (min, secf) = modf (60 * minf)
return (hr, min, 60 * secf)
}
printSecondstoHoursMinutesSeconds()
아무것도 반환하지 않습니다 ( -> ()
함수 선언 의 반환 유형 참조 ). 이 함수는 무언가를 인쇄합니다. 운동장에 표시되지 않습니다. 무언가를 반환 String
하려면 println()
호출 을 제거 하고 함수의 반환 유형을 수정하십시오.
Int
은 /
및 %
기능 의 특성으로 인해 유형에 적합 합니다. 그것은 /
진영 부분을 떨어 뜨립니다. 동일한 코드가 작동하지 않습니다 Double
. 구체적으로 2 == 13/5이지만 2.6 == 13.0 / 5입니다. 따라서에 대한 다른 구현이 필요합니다 Double
. 이에 대한 메모로 답변을 업데이트했습니다.
macOS 10.10+에서는 / (NS)DateComponentsFormatter
읽을 수있는 문자열을 만들기 위해 iOS 8.0+ 가 도입되었습니다.
사용자의 로캘 및 언어를 고려합니다.
let interval = 27005
let formatter = DateComponentsFormatter()
formatter.allowedUnits = [.hour, .minute, .second]
formatter.unitsStyle = .full
let formattedString = formatter.string(from: TimeInterval(interval))!
print(formattedString)
스타일이 가능한 장치 positional
, abbreviated
, short
,full
, spellOut
와 brief
.
자세한 내용은 문서 를 참조하십시오 .
formatter.unitsStyle = .positional
하면 내가 원하는 것을 정확하게 제공합니다 ( 7:30:05
)! 최고의 답변 IMO
hours * 3600 + minutes * 60
Vadian의 대답 을 바탕 으로 Double
( TimeInterval
타입 별칭 인) 확장을 작성하고 시간 형식의 문자열을 뱉어 냈습니다.
extension Double {
func asString(style: DateComponentsFormatter.UnitsStyle) -> String {
let formatter = DateComponentsFormatter()
formatter.allowedUnits = [.hour, .minute, .second, .nanosecond]
formatter.unitsStyle = style
guard let formattedString = formatter.string(from: self) else { return "" }
return formattedString
}
}
다양한 DateComponentsFormatter.UnitsStyle
옵션은 다음과 같습니다.
10000.asString(style: .positional) // 2:46:40
10000.asString(style: .abbreviated) // 2h 46m 40s
10000.asString(style: .short) // 2 hr, 46 min, 40 sec
10000.asString(style: .full) // 2 hours, 46 minutes, 40 seconds
10000.asString(style: .spellOut) // two hours, forty-six minutes, forty seconds
10000.asString(style: .brief) // 2hr 46min 40sec
Doubles
Swift 로 표시됩니다 .
formatter.zeroFormattingBehavior = .pad
. 3660.asString(style: .positional) // 01:01:00
모든 것을 단순화하고 Swift 3에 필요한 코드의 양을 줄이기 위해 기존 답변의 매시업을 만들었습니다 .
func hmsFrom(seconds: Int, completion: @escaping (_ hours: Int, _ minutes: Int, _ seconds: Int)->()) {
completion(seconds / 3600, (seconds % 3600) / 60, (seconds % 3600) % 60)
}
func getStringFrom(seconds: Int) -> String {
return seconds < 10 ? "0\(seconds)" : "\(seconds)"
}
용법:
var seconds: Int = 100
hmsFrom(seconds: seconds) { hours, minutes, seconds in
let hours = getStringFrom(seconds: hours)
let minutes = getStringFrom(seconds: minutes)
let seconds = getStringFrom(seconds: seconds)
print("\(hours):\(minutes):\(seconds)")
}
인쇄물:
00:01:40
보다 체계적이고 유연한 접근 방식은 다음과 같습니다. (Swift 3)
struct StopWatch {
var totalSeconds: Int
var years: Int {
return totalSeconds / 31536000
}
var days: Int {
return (totalSeconds % 31536000) / 86400
}
var hours: Int {
return (totalSeconds % 86400) / 3600
}
var minutes: Int {
return (totalSeconds % 3600) / 60
}
var seconds: Int {
return totalSeconds % 60
}
//simplified to what OP wanted
var hoursMinutesAndSeconds: (hours: Int, minutes: Int, seconds: Int) {
return (hours, minutes, seconds)
}
}
let watch = StopWatch(totalSeconds: 27005 + 31536000 + 86400)
print(watch.years) // Prints 1
print(watch.days) // Prints 1
print(watch.hours) // Prints 7
print(watch.minutes) // Prints 30
print(watch.seconds) // Prints 5
print(watch.hoursMinutesAndSeconds) // Prints (7, 30, 5)
이와 같은 접근 방식을 사용하면 다음과 같은 편의 구문 분석을 추가 할 수 있습니다.
extension StopWatch {
var simpleTimeString: String {
let hoursText = timeText(from: hours)
let minutesText = timeText(from: minutes)
let secondsText = timeText(from: seconds)
return "\(hoursText):\(minutesText):\(secondsText)"
}
private func timeText(from number: Int) -> String {
return number < 10 ? "0\(number)" : "\(number)"
}
}
print(watch.simpleTimeString) // Prints 07:30:05
순전히 정수 기반 접근 방식은 윤일 / 초를 고려하지 않습니다. 유스 케이스가 실제 날짜 / 시간을 처리하는 경우 날짜 및 달력을 사용해야합니다.
month
구현에 추가해 주 시겠습니까? 미리 감사드립니다!
return number < 10 ? "0\(number)" : "\(number)"
하는 문자열 포맷터 return String(format: "%02d", number)
를 사용하여 대체 할 수 있습니다.
스위프트 5에서 :
var i = 9897
func timeString(time: TimeInterval) -> String {
let hour = Int(time) / 3600
let minute = Int(time) / 60 % 60
let second = Int(time) % 60
// return formated string
return String(format: "%02i:%02i:%02i", hour, minute, second)
}
함수를 호출하려면
timeString(time: TimeInterval(i))
02시 44 분 57 초를 반환 합니다
스위프트 4
func formatSecondsToString(_ seconds: TimeInterval) -> String {
if seconds.isNaN {
return "00:00"
}
let Min = Int(seconds / 60)
let Sec = Int(seconds.truncatingRemainder(dividingBy: 60))
return String(format: "%02d:%02d", Min, Sec)
}
다음은 Swift3의 또 다른 간단한 구현입니다.
func seconds2Timestamp(intSeconds:Int)->String {
let mins:Int = intSeconds/60
let hours:Int = mins/60
let secs:Int = intSeconds%60
let strTimestamp:String = ((hours<10) ? "0" : "") + String(hours) + ":" + ((mins<10) ? "0" : "") + String(mins) + ":" + ((secs<10) ? "0" : "") + String(secs)
return strTimestamp
}
위의 확장 기능을 사용하는 SWIFT 3.0 솔루션.
extension CMTime {
var durationText:String {
let totalSeconds = CMTimeGetSeconds(self)
let hours:Int = Int(totalSeconds.truncatingRemainder(dividingBy: 86400) / 3600)
let minutes:Int = Int(totalSeconds.truncatingRemainder(dividingBy: 3600) / 60)
let seconds:Int = Int(totalSeconds.truncatingRemainder(dividingBy: 60))
if hours > 0 {
return String(format: "%i:%02i:%02i", hours, minutes, seconds)
} else {
return String(format: "%02i:%02i", minutes, seconds)
}
}
}
AVPlayer와 같이 이것을 사용합니까?
let dTotalSeconds = self.player.currentTime()
playingCurrentTime = dTotalSeconds.durationText
나는 비슷한 질문에 대답 했다 했지만 결과에 밀리 초를 표시 할 필요는 없습니다. 따라서 내 솔루션에는 iOS 10.0, tvOS 10.0, watchOS 3.0 또는 macOS 10.12가 필요합니다.
func convertDurationUnitValueToOtherUnits(durationValue:durationUnit:smallestUnitDuration:)
내가 이미 언급 한 답변에서 전화해야 합니다.
let secondsToConvert = 27005
let result: [Int] = convertDurationUnitValueToOtherUnits(
durationValue: Double(secondsToConvert),
durationUnit: .seconds,
smallestUnitDuration: .seconds
)
print("\(result[0]) hours, \(result[1]) minutes, \(result[2]) seconds") // 7 hours, 30 minutes, 5 seconds
스위프트 5 :
extension Int {
func secondsToTime() -> String {
let (h,m,s) = (self / 3600, (self % 3600) / 60, (self % 3600) % 60)
let h_string = h < 10 ? "0\(h)" : "\(h)"
let m_string = m < 10 ? "0\(m)" : "\(m)"
let s_string = s < 10 ? "0\(s)" : "\(s)"
return "\(h_string):\(m_string):\(s_string)"
}
}
용법:
let seconds : Int = 119
print(seconds.secondsToTime()) // Result = "00:01:59"
GoZoner의 답변 에 따르면 시간, 분 및 초에 따라 시간 형식을 지정 하는 확장 프로그램을 작성했습니다 .
extension Double {
func secondsToHoursMinutesSeconds () -> (Int?, Int?, Int?) {
let hrs = self / 3600
let mins = (self.truncatingRemainder(dividingBy: 3600)) / 60
let seconds = (self.truncatingRemainder(dividingBy:3600)).truncatingRemainder(dividingBy:60)
return (Int(hrs) > 0 ? Int(hrs) : nil , Int(mins) > 0 ? Int(mins) : nil, Int(seconds) > 0 ? Int(seconds) : nil)
}
func printSecondsToHoursMinutesSeconds () -> String {
let time = self.secondsToHoursMinutesSeconds()
switch time {
case (nil, let x? , let y?):
return "\(x) min \(y) sec"
case (nil, let x?, nil):
return "\(x) min"
case (let x?, nil, nil):
return "\(x) hr"
case (nil, nil, let x?):
return "\(x) sec"
case (let x?, nil, let z?):
return "\(x) hr \(z) sec"
case (let x?, let y?, nil):
return "\(x) hr \(y) min"
case (let x?, let y?, let z?):
return "\(x) hr \(y) min \(z) sec"
default:
return "n/a"
}
}
}
let tmp = 3213123.printSecondsToHoursMinutesSeconds() // "892 hr 32 min 3 sec"
다음은 Swift 4+의 뮤직 플레이어에 사용하는 것입니다. Int 를 읽을 수있는 문자열 형식으로 변환하고 있습니다.
extension Int {
var toAudioString: String {
let h = self / 3600
let m = (self % 3600) / 60
let s = (self % 3600) % 60
return h > 0 ? String(format: "%1d:%02d:%02d", h, m, s) : String(format: "%1d:%02d", m, s)
}
}
다음과 같이 사용하십시오.
print(7903.toAudioString)
산출: 2:11:43
@ r3dm4n의 답변 은 훌륭했습니다. 그러나 나는 그것에 시간이 필요했습니다. 다른 누군가가 여기에 필요한 경우를 대비하여 다음과 같습니다.
func formatSecondsToString(_ seconds: TimeInterval) -> String {
if seconds.isNaN {
return "00:00:00"
}
let sec = Int(seconds.truncatingRemainder(dividingBy: 60))
let min = Int(seconds.truncatingRemainder(dividingBy: 3600) / 60)
let hour = Int(seconds / 3600)
return String(format: "%02d:%02d:%02d", hour, min, sec)
}
스위프트 5 및 문자열 응답, 표현 가능한 형식
public static func secondsToHoursMinutesSecondsStr (seconds : Int) -> String {
let (hours, minutes, seconds) = secondsToHoursMinutesSeconds(seconds: seconds);
var str = hours > 0 ? "\(hours) h" : ""
str = minutes > 0 ? str + " \(minutes) min" : str
str = seconds > 0 ? str + " \(seconds) sec" : str
return str
}
public static func secondsToHoursMinutesSeconds (seconds : Int) -> (Int, Int, Int) {
return (seconds / 3600, (seconds % 3600) / 60, (seconds % 3600) % 60)
}
용법:
print(secondsToHoursMinutesSecondsStr(seconds: 20000)) // Result = "5 h 33 min 20 sec"
NSTimeInterval
이다 Double
확장명으로해야합니까. 예:
extension Double {
var formattedTime: String {
var formattedTime = "0:00"
if self > 0 {
let hours = Int(self / 3600)
let minutes = Int(truncatingRemainder(dividingBy: 3600) / 60)
formattedTime = String(hours) + ":" + (minutes < 10 ? "0" + String(minutes) : String(minutes))
}
return formattedTime
}
}
나는 이것을 위해 폐쇄를 만들었습니다 (Swift 3에서).
let (m, s) = { (secs: Int) -> (Int, Int) in
return ((secs % 3600) / 60, (secs % 3600) % 60) }(299)
이렇게하면 m = 4와 s = 59가됩니다. 원하는대로 형식을 지정할 수 있습니다. 더 자세한 정보는 아니지만 시간을 추가 할 수도 있습니다.
스위프트 4이 확장 프로그램을 사용하고 있습니다
extension Double {
func stringFromInterval() -> String {
let timeInterval = Int(self)
let millisecondsInt = Int((self.truncatingRemainder(dividingBy: 1)) * 1000)
let secondsInt = timeInterval % 60
let minutesInt = (timeInterval / 60) % 60
let hoursInt = (timeInterval / 3600) % 24
let daysInt = timeInterval / 86400
let milliseconds = "\(millisecondsInt)ms"
let seconds = "\(secondsInt)s" + " " + milliseconds
let minutes = "\(minutesInt)m" + " " + seconds
let hours = "\(hoursInt)h" + " " + minutes
let days = "\(daysInt)d" + " " + hours
if daysInt > 0 { return days }
if hoursInt > 0 { return hours }
if minutesInt > 0 { return minutes }
if secondsInt > 0 { return seconds }
if millisecondsInt > 0 { return milliseconds }
return ""
}
}
사용
// assume myTimeInterval = 96460.397
myTimeInteval.stringFromInterval() // 1d 2h 47m 40s 397ms
neek의 답변 이 정확하지 않습니다.
올바른 버전입니다
func seconds2Timestamp(intSeconds:Int)->String {
let mins:Int = (intSeconds/60)%60
let hours:Int = intSeconds/3600
let secs:Int = intSeconds%60
let strTimestamp:String = ((hours<10) ? "0" : "") + String(hours) + ":" + ((mins<10) ? "0" : "") + String(mins) + ":" + ((secs<10) ? "0" : "") + String(secs)
return strTimestamp
}
(seconds % 3600) % 60
은에 최적화 될 수 있습니다seconds % 60
. 시간을 먼저 추출 할 필요가 없습니다.