A constant range. ある定数範囲。
Initializerinit(_:
init(_:content:)
Creates an instance that computes views on demand over a given constant range.
あるインスタンスを作成します、それは、ビューそれらを必要に応じてある与えられた定数範囲にわたって計算するものです。
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
Technology
- Swift
UI
Declaration 宣言
Available when
Data
is Range<Int>
, ID
is Int
, and Content
conforms to View
.
Data
がRange<Int>
である、ID
がInt
である、そしてContent
がView
に準拠する場合に利用可能です。
Parameters パラメータ
data
content
The view builder that creates views dynamically. ビューを動的に作成するビュービルダー。
Discussion 議論
The instance only reads the initial value of the provided data
and doesn’t need to identify views across updates.
インスタンスは、提供されたdata
の初期値を読み出すだけで、ビューそれらを更新を越えて確認する必要はありません。
To compute views on demand over a dynamic range, use For
.