How do I create a bundle of reusable code in Xcode? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T03:57:00Z http://stackoverflow.com/feeds/question/159221 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/159221/how-do-i-create-a-bundle-of-reusable-code-in-xcode 5 How do I create a bundle of reusable code in Xcode? Chris 2008-10-01T19:11:14Z 2008-10-01T20:06:07Z <p>I am developing an iphone application and have to parse xml files in order to put them into a database. I will also be using those same xml parsers in my app so users can import their own data. I was wondering how I can extract those xml parsers into a bundle or a library so I can use them both in my iPhone app and in a command line app where I just populate a sqlite3 database. Thanks in advance!</p> http://stackoverflow.com/questions/159221/how-do-i-create-a-bundle-of-reusable-code-in-xcode/159403#159403 -1 Answer by flitzwald for How do I create a bundle of reusable code in Xcode? flitzwald 2008-10-01T19:49:58Z 2008-10-01T19:49:58Z <p>The short and depressing answer is: You can't.</p> <ol> <li>There is no framework-Project Type for the iPhone platform</li> <li>There <em>is</em> a target-type "static library" for the iPhone, but out-of-the-box it can't be shared between projects</li> <li>Even if there was a framework-Project type for the iPhone platform, you'd still be stuck, since you need to link against different frameworks depending on the target platform (include UIKit/UIKit.h for the iPhone, include Cocoa/Cocoa.h for Cocoa)</li> </ol> <p>The only thing you <em>can</em> do is to keep your shared code in a separate directory, #include the correct headers by preprocessor-macros, and build static library targets in your applications by hand.</p> <p>Greets Seb</p> http://stackoverflow.com/questions/159221/how-do-i-create-a-bundle-of-reusable-code-in-xcode/159432#159432 6 Answer by millenomi for How do I create a bundle of reusable code in Xcode? millenomi 2008-10-01T19:57:51Z 2008-10-01T20:06:08Z <p>Create a static library project, then use the interproject dependency feature of Xcode to build them in the correct order and link the app with the static library. You'll need to have a common build directory set for all the projects for this to work correctly (at least you did around Xcode 3.0, didn't check if this is still a problem with 3.1).</p> <p>You can set the build directory from the target or project's build settings (in the Get Info pane). To create an interpoject dependency:</p> <ul> <li>Drag the library project into the application project's Files &amp; Groups pane.</li> <li>Set up target dependency in the application target's Get Info pane. Make it dependent on the library's target.</li> <li>Drag the library product in the application target's Link With Libraries step. You can find the library product by expanding the library project within the app project's Files &amp; Groups (click the arrow).</li> </ul> <p>Sounds more complicated than it is. It isn't much.</p> <p>(Small extras: yes, you need a common build folder as indicated in the <a href="http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeProjectManagement/070-Building_Products/chapter_8_section_2.html#//apple_ref/doc/uid/TP40002693-SW10" rel="nofollow">Xcode Project Management Guide</a>, and the <a href="http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeBuildSystem/index.html" rel="nofollow">Xcode Build System Guide</a> can help you "get" Xcode's build system, which -- at the cost of starting a religion war -- I think is one of the most flexible and simple build systems out there.)</p>