setDefaultApplication(at:toOpenURLsWithScheme:completion:)
Sets the default app to use when opening files of a specific scheme.
Declaration
func setDefaultApplication(at applicationURL: URL, toOpenURLsWithScheme urlScheme: String, completion completionHandler: (@Sendable ((any Error)?) -> Void)? = nil)func setDefaultApplication(at applicationURL: URL, toOpenURLsWithScheme urlScheme: String) async throwsParameters
- 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
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.