0

I have been trying to understand xcode..

What is a Workspace? Is there something that can't be done with a project that needs a Workspace?

F.Fun
  • 21
  • 4

2 Answers2

1

Apple has a page explaining what Workspace is.

In short, it's used to group several projects together to build an app. If you use CocoaPods for example, the pods are referenced as targets from another project. A workspace helps tie your code and those pods together to make an app.

Code Different
  • 90,614
  • 16
  • 144
  • 163
  • For what i know, a project can be referenced from another project and used there. What I understood from the link is that Workspace facilitates the workflow in some cases. Is that it? – F.Fun May 11 '16 at 03:19
  • Not understanding "Workspace the workflow" – Code Different May 11 '16 at 03:19
0

You use a workspace to share a code library amongst multiple projects.

Watch https://youtu.be/LNU6L2pnq0k and it should help you get a better idea of why/how they are used.

Ryan Collins
  • 679
  • 1
  • 6
  • 13