iOS noob: Which directory do I open in xcode to do development in that IDE?
v
Viacheslav Kormushkin
06/16/2021, 1:55 PM
double click on xcworkspace and xcode will load the project
t
Tiago Nunes
06/16/2021, 2:01 PM
A workspace is a collection of projects. It's useful to organize your projects when there's correlation between them (e.g.: Project A includes a library, that is provided as a project itself as project B. When you build the workspace project B is compiled and linked in project A).
It's common to use a workspace in the popularĀ CocoaPods. When you install your pods, they are placed inside a workspace, that holds your project and the pod libraries.