Ios Xcode目标/项目组织最佳实践

Ios Xcode目标/项目组织最佳实践,ios,objective-c,xcode,visual-studio,Ios,Objective C,Xcode,Visual Studio,来自VisualStudio的我发现很难想象苹果希望我如何使用Xcode来构建更大的项目。也许是我的错,我试图应用VisualStudio语义,但我很好奇应该如何组织一个类似这样的“解决方案” MySolution -Library1 (output: DLL, configurations: Debug/Release) -Library2 (output: DLL, configurations: Debug/Release) -Application1 (output: EXE, conf

来自VisualStudio的我发现很难想象苹果希望我如何使用Xcode来构建更大的项目。也许是我的错,我试图应用VisualStudio语义,但我很好奇应该如何组织一个类似这样的“解决方案”

MySolution
-Library1 (output: DLL, configurations: Debug/Release)
-Library2 (output: DLL, configurations: Debug/Release)
-Application1 (output: EXE, configurations: Debug/Release, references Library1 and Library2)
这是如何移植到Xcode术语w/targets中的?这些组件中的每一个都应该是单个工作区中自己的项目,还是都被塞进具有多个目标的单个项目中

谢谢。

是否可能重复?