Skip to content

Instantly share code, notes, and snippets.

@pgtwitter
Last active November 20, 2024 05:34
Show Gist options
  • Save pgtwitter/352c10dad9f808b829bfb7b20bf31e62 to your computer and use it in GitHub Desktop.
Save pgtwitter/352c10dad9f808b829bfb7b20bf31e62 to your computer and use it in GitHub Desktop.
Open a URL with an application ( Objective-C / Cocoa )
[[NSWorkspace sharedWorkspace] openURLs:@[url]
withApplicationAtURL:[NSURL fileURLWithPath:@"/Applications/Safari.app"]
configuration:nil
completionHandler:^(NSRunningApplication * _Nullable app, NSError * _Nullable error) {
[app activateWithOptions:NSApplicationActivateIgnoringOtherApps];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment