opening playground directly without navgating through xcode

Viewed 21

I play around with the playground a lot and write most of my coding exercises there, is there a way to directly open the playground like an app or with some shortcut

1 Answers

Playgrounds run in Xcode. There is a "Swift Playgrounds" app for iPad that lets you work with Playgrounds on iPad.

Those are the two apps in which you can run playgrounds. Full stop.

For playgrounds you develop on a Mac, you can double-click the playground file in the Finder and Xcode will launch and open the playground, but you must use Xcode to build and run the playground.

Related