Saturday 28 May 2016

swift - What is the difference between Xcode project and Xcode playground?



I'm new to Xcode and swift and I'm trying to understand what's the difference between "starting with playground" and "creating a new xcode project"enter image description here


Answer



An Xcode project allows you to create real apps that you could eventually upload to the App Store (providing you became an Apple Developer). An Xcode Playground allows you to play with code and test it out. It isn't for mainstream developing. Does that help?


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...