---
title: "setDefaultApplication(at:toOpenURLsWithScheme:completion:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nsworkspace/setdefaultapplication(at:toopenurlswithscheme:completion:)"
---

# setDefaultApplication(at:toOpenURLsWithScheme:completion:)

Sets the default app to use when opening files of a specific scheme.

## Declaration

```swift
func setDefaultApplication(at applicationURL: URL, toOpenURLsWithScheme urlScheme: String, completion completionHandler: (@Sendable ((any Error)?) -> Void)? = nil)
```

```swift
func setDefaultApplication(at applicationURL: URL, toOpenURLsWithScheme urlScheme: String) async throws
```

## Parameters

- `applicationURL`: The URL of the default application.
- `urlScheme`: The URL of the scheme to open.
- `completionHandler`: The completion handler to call after the operation completes.

## Discussion

Discussion This method sets the default app to open files of the type specified by the urlScheme. If a change requires user consent, the system asks the for consent asynchronously before invoking the completion handler.

## See Also

### Setting Default Application Information

- [setDefaultApplication(at:toOpenFileAt:completion:)](appkit/nsworkspace/setdefaultapplication(at:toopenfileat:completion:).md)
- [setDefaultApplication(at:toOpen:completion:)](appkit/nsworkspace/setdefaultapplication(at:toopen:completion:).md)
- [setDefaultApplication(at:toOpenContentTypeOfFileAt:completion:)](appkit/nsworkspace/setdefaultapplication(at:toopencontenttypeoffileat:completion:).md)
