<!--
{
  "availability" : [
    "macOS: 10.12.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SafariServices",
  "identifier" : "/documentation/SafariServices/SFSafariTab/getPagesWithCompletionHandler(_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Safari Services"
    ],
    "preciseIdentifier" : "c:objc(cs)SFSafariTab(im)getPagesWithCompletionHandler:"
  },
  "title" : "getPagesWithCompletionHandler(_:)"
}
-->

# getPagesWithCompletionHandler(_:)

Calls the completion handler with all of the tab’s active and preloading pages.

```
func getPagesWithCompletionHandler(_ completionHandler: @escaping @Sendable ([SFSafariPage]?) -> Void)
```

## Parameters

`completionHandler`

A block to call when the tab’s pages are retrieved.

## Discussion

> Important:
> You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration:
> 
> ```swift
> func pages() async -> [SFSafariPage]?
> ```
> 
> For information about concurrency and asynchronous code in Swift, see <doc://com.apple.documentation/documentation/Swift/calling-objective-c-apis-asynchronously>.

The tab’s pages include the active page and other pages that Safari might be loading in the background; for example, Top Hits.

---

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)