XCode 13.1 日本語化計画:SwiftUI: ProgressiveView
与えられた進行状況インスタンスを視覚化するための進行状況ビューを作成します。
init(_ progress: Progress) where Label == EmptyView, CurrentValueLabel == EmptyView
Label が View に準拠し CurrentValueLabel が View に準拠している時使用できます。
進行状況ビューは、与えられた進行状況インスタンスの localizedDescription を使用してデフォルトのラベルを合成します。
init<V>(value: V?, total: V)
確定した進行状況を表示するための進行状況ビューを作成します。
Label が View に準拠し CurrentValueLabel が View に準拠している時使用できます。
init<V>(LocalizedStringKey, value: V?, total: V)
ローカライズされた文字列からそのラベルを生成する確定的な進行状況を表示するための進行状況ビューを作成します。
Label が View に準拠し CurrentValueLabel が View に準拠している時使用できます。
init<S, V>(S, value: V?, total: V)
文字列からそのラベルを生成する確定的な進行状況を表示するための進行状況ビューを作成します。
Label が View に準拠し CurrentValueLabel が View に準拠している時使用できます。
init<V>(value: V?, total: V, label: () -> Label)
カスタムラベルで、確定した進行状況を表示するための進行状況ビューを作成します。
Label が View に準拠し CurrentValueLabel が View に準拠している時使用できます。
init<V>(value: V?, total: V, label: () -> Label, currentValueLabel: () -> CurrentValueLabel)
カスタムラベルで、確定した進行状況を表示するための進行状況ビューを作成します。
Label が View に準拠し CurrentValueLabel が View に準拠している時使用できます。