<!--
{
  "availability" : [
    "iOS: -",
    "iPadOS: -",
    "visionOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/PushWindowAction/callAsFunction(id:value:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI16PushWindowActionV14callAsFunction2id5valueySS_xtSeRzSERzSHRzlF"
  },
  "title" : "callAsFunction(id:value:)"
}
-->

# callAsFunction(id:value:)

Pushes a window defined by the window group that presents the specified
value type and that is associated with the specified identifier.

```
@MainActor func callAsFunction<D>(id: String, value: D) where D : Decodable, D : Encodable, D : Hashable
```

## Parameters

`id`

The identifier of the scene to present.

`value`

The value to present.

## Discussion

Don’t call this method directly. SwiftUI calls it when you call the
[`pushWindow`](/documentation/SwiftUI/EnvironmentValues/pushWindow) action with an identifier and a value:

```
pushWindow(id: "viewer", value: video.id)
```

For information about how Swift uses the `callAsFunction()` method to
simplify call site syntax, see
[Methods with Special Names](https://docs.swift.org/swift-book/ReferenceManual/Declarations.html#ID622)
in *The Swift Programming Language*.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)