---
title: "init(destinationName:tag:selection:label:)"
framework: swiftui
role: symbol
role_heading: Initializer
path: "swiftui/navigationlink/init(destinationname:tag:selection:label:)"
---

# init(destinationName:tag:selection:label:)

Creates a navigation link that presents a view from a WatchKit storyboard when a bound selection variable matches a value you provide.

## Declaration

```swift
nonisolated init<V>(destinationName: String, tag: V, selection: Binding<V?>, @ContentBuilder label: () -> Label) where V : Hashable
```

## Parameters

- `destinationName`: The storyboard name of a view for the navigation link to present.
- `tag`: The value of selection that causes the link to present destination.
- `selection`: A bound variable that causes the link to present destination when selection becomes equal to tag.
- `label`: A content builder to produce a label describing the destination to present.

## See Also

### Creating links for WatchKit

- [init(destinationName:isActive:label:)](swiftui/navigationlink/init(destinationname:isactive:label:).md)
- [init(destinationName:label:)](swiftui/navigationlink/init(destinationname:label:).md)
