Home > OS >  Export a project to the Playgrounds app on the iPad
Export a project to the Playgrounds app on the iPad

Time:09-13

Can I transfer the project on the Xcode application in SwiftUI language on the Mac to the iPad in the Playgrounds application

I've searched a lot about it and couldn't find anything Can you help me with this

CodePudding user response:

Swift Playgrounds (For iPad) isn't Xcode. It has its limitations. Here is a good question here on SO that might help: Here

I would strongly advise against using Swift Playground unless it's for an app, that does not use any package dependencies, so like a basic app.

But it's great for learning Swift!

CodePudding user response:

Create a Swift Playgrounds App project in Xcode if you want to use the project in the Swift Playgrounds app on iPad or Mac. The other project types won't work on the Swift Playgrounds app.

  • Related