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