イニシャライザ
init(_:isActive:destination:)
アクティブなときに宛先ビューを表示するナビゲーションリンクを作成します。
宣言
init(isActive: Binding<Bool>, destination: () -> Destination, label: () -> Label)
パラメータ
isActive
destination(宛先) が現在提示されているかどうかを示すブール値への結束。
destination
表示すべきナビゲーションリンクのビュー。
label
提示すべき destination(宛先) を説明するラベルを作成するビュービルダー。
以下も見よ
プログラムによるアクティベーションを使用した宛先ビューの提示
init(LocalizedStringKey, isActive: Binding<Bool>, destination: () -> Destination)
リンクが、ローカライズされた文字列キーから生成するテキストラベルを使用して、アクティブな時に宛先ビューを表示するナビゲーションリンクを作成します。
Label が Text で、Destination が View に準拠している場合に使用できます。
init<S>(S, isActive: Binding<Bool>, destination: () -> Destination)
リンクが、タイトル文字列から生成するテキストラベルを使用して、アクティブな時に宛先ビューを表示するナビゲーションリンクを作成します。
Label が Text で、Destination が View に準拠している場合に使用できます。
init(destinationName: String, isActive: Binding<Bool>, label: () -> Label)
アクティブな時に WatchKit ストーリーボードからのビューを表示するナビゲーションリンクを作成します。
Label が View に準拠し、Destination が _WKStoryboardContent の時利用できます。