tags:

views:

51

answers:

1

So I am working on a very large xcode project, with a lot of libraries, and sub directories which generates a huge pbxproj file, is there a way to generate smaller xcode projects or pbxproj files that can then be read into a main project. Similar to how visual studio has a main vcproj file and smaller vcproj files for each library/executable etc...

Thanks for any input.

+1  A: 

You should break your project up into logical chunks. In ObjC world these chunks are called frameworks. Then you can create a main project that incorporates your frameworks. It's cleaner and easier to maintain. Apple has a framework programming guide.

EightyEight