@kokidddd (fasdfas asdfasdf)posted at 2021-12-06more_horizAre you sure you want to delete the question?closeIf your question is resolved, you may close it.Leaving a resolved question undeleted may help others!We hope you find it useful!Close questionDelete question秒(int)を00:00:00(string)の形に変換したいQ&AXcodeiOSSwift 解決したいこと swiftで秒(int)を00:00:00(string)の形に変換する方法を教えてください。 タイマーを作成しているのですが、上記の処理をどのように行えばいいのかわからずに困っています。算数が得意な方お答えいただけると助かります。 0subscribe
@PondVillegeposted at 2021-12-06more_horiz1時間は3600秒, 1分は60秒ですから以下のようになります. let time: Int = 86399 print("\(time / 3600 % 24):\(time / 60 % 60):\(time % 60)") // 23:59:59 00Like