---
title: "callAsFunction(id:)"
framework: swiftui
role: symbol
role_heading: Instance Method
path: "swiftui/openwindowaction/callasfunction(id:)"
---

# callAsFunction(id:)

Opens a window that’s associated with the specified identifier.

## Declaration

```swift
@MainActor @preconcurrency func callAsFunction(id: String)
```

## Parameters

- `id`: The identifier of the scene to present.

## Discussion

Discussion Don’t call this method directly. SwiftUI calls it when you call the openWindow action with an identifier: openWindow(id: "message") For information about how Swift uses the callAsFunction() method to simplify call site syntax, see Methods with Special Names in The Swift Programming Language.

## See Also

### Calling the action

- [callAsFunction(id:value:)](swiftui/openwindowaction/callasfunction(id:value:).md)
- [callAsFunction(value:)](swiftui/openwindowaction/callasfunction(value:).md)
