---
title: "webViewShow(_:)"
framework: webkit
role: symbol
role_heading: Instance Method
path: "webkit/webuidelegate/webviewshow(_:)"
---

# webViewShow(_:)

Displays a web view’s window and moves it to the front.

## Declaration

```swift
optional func webViewShow(_ sender: WebView!)
```

## Parameters

- `sender`: The web view that sent the message.

## Discussion

Discussion This method is typically used after a call to webView(_:createWebViewWith:), which creates a new window. The new window is not ordered to the front (or even shown) unless you implement this method.
