SwiftUI(Swift)で初心者プログラミングをしています。
Double型に入っている変数(秒数)を hh:mm:ss フォrーマットで出力したく、Webを参照した以下のコードを書いたのですがエラーが出てしまします。
let formatter = DateComponentsFormatter() formatter.unitsStyle = .positional formatter.allowedUnits = [.hour, .minute, .second] message = String(formatter.string(from: lapTime))//-------Error!
lapTimeはDouble型です。
4行目でエラーが発生し、
Value of optional type 'String?' must be unwrapped to a value of type 'String'
と出てしまいます。
解決策をお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/03 13:11