tags:

views:

52

answers:

1

How can a cocoa application open a url in a browser other than the default browser? NSWorkspace doesn’t appear to offer any method for this.

+2  A: 

NSWorkspace has a couple of methods:

To use the second method, you'll need to know the bundle identifier of the browser you want to open.

Darren
Ah, that makes sense. I read the beginning of that method and assumed it would work because of the description, "Opens one or more files from an array of URLs.”Much thanks!
oneinfiniteloop